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>2012-02-12 16:00:03 +0400
committernulltoken <emeric.fermas@gmail.com>2012-02-12 16:00:03 +0400
commit1cb40daeab62551b44a964e2dce60bad098a0477 (patch)
tree1ce2b4cda138fb8851f870d28cb989c150dcfe40
parent1e9961fa26e47b90903ae69f27dc5bc11ddd70db (diff)
Release LibGit2Sharp v0.8.0v0.8.0
-rw-r--r--CHANGELOG.md21
-rw-r--r--LibGit2Sharp/Properties/AssemblyInfo.cs4
2 files changed, 23 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 03307233..8bc937fb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,27 @@
- CI server: <http://teamcity.codebetter.com/project.html?projectId=project127&guest=1>
- @libgit2sharp: <http://twitter.com/libgit2sharp>
+## v0.8
+
+### Additions
+
+ - Add Repository.Reset() and support of Soft and Mixed modes
+ - Make Repository.Commit() able to amend the current tip of the Head
+ - Make the constructor of Repository able to open a repository from a working directory path
+ - Make Repository.Index.RetriveStatus honor the .gitgnore files
+
+### Changes
+
+ - Remove Repository.HasObject()
+ - Change Repository.Init() to make it return an instance of the Repository type, instead of a string containing the path of the repository
+ - Update libgit2 binaries to libgit2/libgit2@6d39c0d
+
+### Fixes
+
+ - Reinit a repository doesn't throw anymore (#54)
+ - Embedded libgit2 binaries are now compiled with THREADSAFE=ON flag (#64)
+ - Prevent Repository.Head.IsCurrentRepositoryHead from throwing when the Repository is empty (#105)
+
## v0.7
### Additions
diff --git a/LibGit2Sharp/Properties/AssemblyInfo.cs b/LibGit2Sharp/Properties/AssemblyInfo.cs
index 9a8f54a9..f5a693af 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.7.0")]
-[assembly: AssemblyFileVersion("0.7.0")]
+[assembly: AssemblyVersion("0.8.0")]
+[assembly: AssemblyFileVersion("0.8.0")]