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-04-13 23:31:03 +0400
committernulltoken <emeric.fermas@gmail.com>2014-04-14 22:02:57 +0400
commitcccecb2a5eddcb9e952cfd8be545396312ee24d5 (patch)
tree0824e8fc46ecd6abac0e0d0f44b89c76efc778fd
parentfb3c4f0fcc722d1ff8ce2631d47fae39245bb931 (diff)
Release LibGit2Sharp v0.17.0v0.17.0
-rw-r--r--CHANGES.md27
-rw-r--r--LibGit2Sharp/Properties/AssemblyInfo.cs4
2 files changed, 29 insertions, 2 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 507c4871..e53a6701 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -8,6 +8,33 @@
- CI server: <http://teamcity.codebetter.com/project.html?projectId=project127&guest=1>
- @libgit2sharp: <http://twitter.com/libgit2sharp>
+## v0.17.0 - ([diff](https://github.com/libgit2/libgit2sharp/compare/v0.16.0...v0.17.0))
+
+### Additions
+
+ - Introduce Network.Pull() (#643 and #65)
+ - Introduce DefaultCredentials for NTLM/Negotiate authentication (#660)
+ - Make repo.Merge() accept a Branch (#643)
+ - Introduce MergeOptions type, to specify the type of merge and whether to commit or not (#643, #662, #663)
+ - Teach reference altering methods to let the caller control how the reflog is valued (#612, #505 and #389)
+ - Teach repo.Commits.FindMergeBase to leverage either Standard or Octopus strategy (#634 and #629)
+ - Make ObjectDatabase.CreateCommit() accept an option controlling the prettifying of the message (#619)
+ - Allow notes retrieval by namespace and ObjectId (#653)
+
+### Changes
+
+ - Deprecate repo.Commits.FindCommonAncestor() in favor of repo.Commits.FindMergeBase() (#634)
+ - Deprecate Network.FetchHeads and Repository.MergeHeads (#643)
+ - Repository.Commit() overloads now accept a CommitOptions parameter (#668)
+ - Repository.Clone() now accepts a CloneOptions parameter
+ - Ease testability by making all GetEnumerator() methods fakeable (#646 and #644)
+ - Update libgit2 binaries to libgit2/libgit2@bcc6229
+
+### Fixes
+
+ - Make Branch.Add() and Branch.Move() use the correct indentity to feed the reflog (#612 and #616)
+ - Fix NullReferenceException occuring in Repository.Clone (#659 and #635)
+
## v0.16.0 - ([diff](https://github.com/libgit2/libgit2sharp/compare/v0.15.0...v0.16.0))
### Additions
diff --git a/LibGit2Sharp/Properties/AssemblyInfo.cs b/LibGit2Sharp/Properties/AssemblyInfo.cs
index 61d00bc3..db3ca028 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.16.0")]
-[assembly: AssemblyFileVersion("0.16.0")]
+[assembly: AssemblyVersion("0.17.0")]
+[assembly: AssemblyFileVersion("0.17.0")]