Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2014-10-31 12:33:12 +0300
committernulltoken <emeric.fermas@gmail.com>2014-11-04 21:56:11 +0300
commita2682edeb6a7a9633d9bcf1c94ec25e265ad32fa (patch)
tree0cba384edc0b05c9f9a710c76eb3c235e3d61f43
parentcf3b8062fc5bda68ccb1c72b75662ced021f6c6c (diff)
Release LibGit2Sharp v0.20v0.20
-rw-r--r--CHANGES.md30
-rw-r--r--LibGit2Sharp/Properties/AssemblyInfo.cs4
-rw-r--r--README.md7
3 files changed, 38 insertions, 3 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 9dee434d..2e4766ed 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -10,6 +10,36 @@
- CodeBetter TeamCity: <http://teamcity.codebetter.com/project.html?projectId=LibGit2Sharp&guest=1>
- Travis: <https://travis-ci.org/libgit2/libgit2sharp>
+## 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<T> (#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 4e510cf5..0811ab3d 100644
--- a/LibGit2Sharp/Properties/AssemblyInfo.cs
+++ b/LibGit2Sharp/Properties/AssemblyInfo.cs
@@ -42,5 +42,5 @@ using System.Runtime.InteropServices;
// 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 a288b282..18379c00 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]