Skip to content

Commit

Permalink
prepared release 1.0.1 (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
spkl authored Jan 31, 2021
1 parent 1637315 commit eac0209
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/Diffs.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,19 @@
<Copyright>Copyright (c) 2021 Sebastian Fischer</Copyright>
<RepositoryUrl>https://github.com/spkl/Diffs</RepositoryUrl>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<Version>1.0.0</Version>
<FileVersion>1.0.1.0</FileVersion>
<Version>1.0.1</Version>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\keys\spkl.Diffs.snk</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign>
<PackageProjectUrl>https://github.com/spkl/Diffs</PackageProjectUrl>
<Description>Provides a .NET Standard and .NET Core implementation to the diff algorithm (shortest edit script) described by Eugene Myers in "An O(ND) Difference Algorithm and Its Variations". Unlike some other implementations, this one can compare sequences of any object type, using the standard Equals method or a custom IEqualityComparer.</Description>
<Description>Provides a .NET Standard and .NET Core implementation to the diff algorithm (shortest edit script) described by Eugene Myers in "An O(ND) Difference Algorithm and Its Variations". Unlike some other implementations, this one can compare sequences of any object type, using the standard Equals method or a custom IEqualityComparer.

This project uses Semantic Versioning (https://semver.org/).</Description>
<PackageTags>diff diffs difference algorithm ses shortest edit script myers</PackageTags>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageReleaseNotes>- Added documentation comments to all public types and methods to explain usage.
- Fixed issue where the comparer passed into the MyersDiff&lt;T&gt; constructor was ignored.</PackageReleaseNotes>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit eac0209

Please sign in to comment.