diff --git a/CHANGES.md b/CHANGES.md index 9dee434dc..2e4766edb 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -10,6 +10,36 @@ - CodeBetter TeamCity: - Travis: +## v0.20 - ([diff](https://github.com/libgit2/libgit2sharp/compare/v0.19...v0.20)) + +### Additions + + - Teach RemoteUpdater to update the remote url (#803) + - Introduce ObjectDatabase.CreateTree(Index) and Index.Reset(Tree) (#788, #799) + - Add process wide logging feature (#832) + - Add process wide SmartSubtransport registration/unregistration (#528) + - Expose Index.Clear() (#814) + +### Changes + + - Require Mono 3.6+ on non Windows platform (#800) + - Require NuGet 2.7+ to install the package (#836) + - Throw MergeFetchHeadNotFoundException when Pull cannot find ref to merge (#841) + - Drop Remote.IsSupportedUrl() (#857) + - Deprecate repo.Version in favor of GlobalSettings.Version (#726, #820) + - Remove optional parameters from IRepository (#779, #815) + - Move higher level Index operations to IRepository (#822, #851) + - Deprecate repo.Refs.Move() in favor of repo.Refs.Rename() (#752, #819) + - Update libgit2 binaries to libgit2/libgit2@3f8d005 + +### Fixes + + - Fix compareOptions handling in Diff.Compare (#827, #828) + - Honor MSBuild Publish mechanism (#597, #821) + - Make Configuration.BuildSignature() throw a more descriptive message (#831, #858) + - Prevent Branch.Remote property from throwing when the remote is unresolvable (#823) + - Teach Revert() to clean up repository state when there is nothing to revert (#816) + ## v0.19 - ([diff](https://github.com/libgit2/libgit2sharp/compare/v0.18.1...v0.19)) ### Additions diff --git a/LibGit2Sharp/Properties/AssemblyInfo.cs b/LibGit2Sharp/Properties/AssemblyInfo.cs index 4e510cf50..0811ab3d7 100644 --- a/LibGit2Sharp/Properties/AssemblyInfo.cs +++ b/LibGit2Sharp/Properties/AssemblyInfo.cs @@ -42,5 +42,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("0.19.0")] -[assembly: AssemblyFileVersion("0.19.0")] +[assembly: AssemblyVersion("0.20.0")] +[assembly: AssemblyFileVersion("0.20.0")] diff --git a/README.md b/README.md index a288b2829..18379c00c 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,14 @@ [0]: http://libgit2.github.com/ +## Prerequisites + + - **Windows:** .Net 4.0+ + - **Linux/MacOsX:** Mono 3.6+ + ## Online resources - - [NuGet package][1] + - [NuGet package][1] (Requires NuGet 2.7+) - [Source code][2] - [Continuous integration][3]