Skip to content

Commit

Permalink
v2.3.0 Release (#152)
Browse files Browse the repository at this point in the history
* v2.3.0 Release

* Update CHANGELOG.md
  • Loading branch information
wbaldoumas authored Jul 17, 2024
1 parent d31da14 commit 4312435
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 21 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.3.0] - 2024-07-16

[ElderJames](https://github.com/ElderJames) made their first contribution! 🎉

### Added

- Added support for .NET Standard 2.0 in the core `Markdown.ColorCode` package.

## [2.2.2] - 2024-04-30

### Changed
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ public interface FooService {
### Package Manager

```text
Install-Package Markdown.ColorCode -Version 2.2.2
Install-Package Markdown.ColorCode -Version 2.3.0
```

### .NET CLI

```text
dotnet add package Markdown.ColorCode --version 2.2.2
dotnet add package Markdown.ColorCode --version 2.3.0
```

## Usage
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>2.2.2</Version>
<Version>2.3.0</Version>
<Authors>William Baldoumas</Authors>
<Description>An extension for Markdig that adds syntax highlighting to code through the power of ColorCode, boosted with the CsharpToColouredHTML.Core package.</Description>
<Copyright>Copyright ©2024 William Baldoumas</Copyright>
Expand Down
37 changes: 19 additions & 18 deletions src/Markdown.ColorCode/Markdown.ColorCode.csproj
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>2.2.2</Version>
<Authors>William Baldoumas</Authors>
<Description>An extension for Markdig that adds syntax highlighting to code through the power of ColorCode.</Description>
<Copyright>Copyright ©2024 William Baldoumas</Copyright>
<PackageProjectUrl>https://wbaldoumas.github.io/markdown-colorcode/index.html</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/wbaldoumas/markdown-colorcode</RepositoryUrl>
<PackageTags>markdig;markdown;html;colorcode;colorize;highlight;renderer</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>icon.png</PackageIcon>
<PackageId>Markdown.ColorCode</PackageId>
<TargetFrameworks>netstandard2.0;net6.0;net7.0;net8.0</TargetFrameworks>
<langversion>latest</langversion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>2.3.0</Version>
<Authors>William Baldoumas</Authors>
<Description>An extension for Markdig that adds syntax highlighting to code through the power of ColorCode.</Description>
<Copyright>Copyright ©2024 William Baldoumas</Copyright>
<PackageProjectUrl>https://wbaldoumas.github.io/markdown-colorcode/index.html</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/wbaldoumas/markdown-colorcode</RepositoryUrl>
<PackageTags>markdig;markdown;html;colorcode;colorize;highlight;renderer</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIcon>icon.png</PackageIcon>
<PackageId>Markdown.ColorCode</PackageId>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 4312435

Please sign in to comment.