Skip to content

Commit

Permalink
Updated version number and performance data.
Browse files Browse the repository at this point in the history
  • Loading branch information
Knagis committed Sep 13, 2014
1 parent 11b77e5 commit 710082f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
6 changes: 3 additions & 3 deletions CommonMark.NET.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
<metadata>
<id>CommonMark.NET</id>
<version>0.1.2</version>
<version>0.1.3</version>
<title>CommonMark.NET</title>
<authors>Knagis</authors>
<licenseUrl>https://raw.githubusercontent.com/Knagis/CommonMark.NET/master/LICENSE.md</licenseUrl>
<projectUrl>https://github.com/Knagis/CommonMark.NET/</projectUrl>
<iconUrl>https://raw.githubusercontent.com/dcurtis/markdown-mark/master/png/32x20.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Library for converting Markdown documents to HTML according to the CommonMark specification.</description>
<description>Library for converting Markdown documents to HTML according to the CommonMark specification. Optimized for maximum performance.</description>
<releaseNotes>
Performance improvements (~75% improvement for the sample data since 0.1.0).
Performance improvements - now 8x faster than MarkdownSharp and just as fast as MarkdownDeep.
</releaseNotes>
<copyright>Copyright © Kārlis Gaņģis 2014</copyright>
<tags>CommonMark Markdown</tags>
Expand Down
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,14 @@ only free edition that supports PCL projects.
Using a [simple tool][3] to compare the performance of various Markdown implementations for .NET yields the
following results:

CommonMark.NET 0.1.2 15 ms 23% (current release for this library)
CommonMark.NET 0.1.1 27 ms 41%
CommonMark.NET 0.1.0 56 ms 83% (first public release)
MarkdownSharp 1.13 56 ms 83% (might not conform to CommonMark specification)
MarkdownDeep 1.5 8 ms 11% (might not conform to CommonMark specification)
CommonMarkSharp 0.1.0 276 ms 409%
Baseline 67 ms 100% (used to compare results on different machines)
CommonMark.NET 0.1.3 7 ms 11% (current release for this library)
CommonMark.NET 0.1.2 15 ms 23%
CommonMark.NET 0.1.1 27 ms 42%
CommonMark.NET 0.1.0 56 ms 84% (first public release)
MarkdownSharp 1.13 55 ms 84% (might not conform to CommonMark specification)
MarkdownDeep 1.5 7 ms 11% (might not conform to CommonMark specification)
CommonMarkSharp 0.1.1 91 ms 140%
Baseline 65 ms 100% (used to compare results on different machines)

This benchmark is very simple and tests the processing of the CommonMark specification document itself (a
175 KB file). The results are provided just for a high-level comparison.
Expand Down

0 comments on commit 710082f

Please sign in to comment.