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-06-02 22:22:36 +0400
committernulltoken <emeric.fermas@gmail.com>2014-06-02 23:53:06 +0400
commit94f769e812cc5b86a95cf1037e6c51ac56afb0ba (patch)
tree2f214f7f5fc46742d61e46796261ce0f2aafb58c
parent9e82f3043e01c0fb5d901d0dbd2223e0de49b9d8 (diff)
Release LibGit2Sharp v0.18.0v0.18.0
-rw-r--r--CHANGES.md32
-rw-r--r--LibGit2Sharp/Properties/AssemblyInfo.cs4
2 files changed, 33 insertions, 3 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 9a6a859a..a7cc7ea1 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -5,8 +5,38 @@
- Source code: <https://github.com/libgit2/libgit2sharp>
- NuGet package: <http://nuget.org/List/Packages/LibGit2Sharp>
- Issue tracker: <https://github.com/libgit2/libgit2sharp/issues>
- - CI server: <http://teamcity.codebetter.com/project.html?projectId=project127&guest=1>
- @libgit2sharp: <http://twitter.com/libgit2sharp>
+ - CI servers:
+ - CodeBetter TeamCity: <http://teamcity.codebetter.com/project.html?projectId=LibGit2Sharp&guest=1>
+ - Travis: <https://travis-ci.org/libgit2/libgit2sharp>
+
+## v0.18.0 - ([diff](https://github.com/libgit2/libgit2sharp/compare/v0.17.0...v0.18.0))
+
+### Additions
+
+ - Introduce repo.Revert() (#706)
+ - Enhanced control over Merge behavior through MergeOptions (#685)
+ - Introduce repo.Network.Remotes.Remove() (#729, #731)
+ - Teach repo.Network.ListReferences() to accept a Credentials (#647, #704)
+ - Introduce Reference.IsValidName() (#680, #691)
+ - Introduce Remote.IsValidName() (#679, #690)
+ - Expose StatusOptions.RecurseIgnoredDirs (#728)
+ - Introduce GlobalSettings.Features() (#717)
+ - Make Repository.Version output the libgit2 built-in features (#676, #694)
+
+### Changes
+
+ - LibGit2Sharp now requires .Net 4.0 (#654, #678)
+ - Repository.Checkout() and Branch.Checkout() overloads now accept a CheckoutOptions parameter (#685)
+ - Deprecate repo.Refs.IsValidName() (#680, #691)
+ - Deprecate repo.Network.Remotes.IsValidName() (#679, #690)
+ - Deprecate repo.Branches.Move() in favor of repo.Branches.Rename() (#737, #738)
+ - Update libgit2 binaries to libgit2/libgit2@2f6f6eb
+
+### Fixes
+
+ - Do not fail enumerating the ObjectDatabase content when an unexpected file is found under .git/objects (#704)
+ - Fix update of HEAD when committing against a bare repository with a temporary working directory (#692)
## v0.17.0 - ([diff](https://github.com/libgit2/libgit2sharp/compare/v0.16.0...v0.17.0))
diff --git a/LibGit2Sharp/Properties/AssemblyInfo.cs b/LibGit2Sharp/Properties/AssemblyInfo.cs
index db3ca028..08988c23 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.17.0")]
-[assembly: AssemblyFileVersion("0.17.0")]
+[assembly: AssemblyVersion("0.18.0")]
+[assembly: AssemblyFileVersion("0.18.0")]