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>2011-10-23 15:35:49 +0400
committernulltoken <emeric.fermas@gmail.com>2011-10-23 16:01:35 +0400
commit6b66c0fb53f204ad7bd260f01edb6b95d299fa43 (patch)
treeddfd86dd1122b904a59a9e8bdb5639d489a4c7e8
parent52de337df846ccc8e20f83dc9b1bffccbe55fd51 (diff)
Release LibGit2Sharp v0.6.0v0.6.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 6bd09f59..61944c63 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,27 @@
- Source code: <https://github.com/libgit2/libgit2sharp>
- NuGet package: <http://nuget.org/List/Packages/LibGit2Sharp>
+## v0.6
+
+### Additions
+
+ - Add Configuration.Get() overload that takes key in parts
+ - Add tracking branch details (#75)
+ - Allow creation of commit using signature from configuration files
+ - Add Index.Remove() (#78)
+ - Add a string indexer to the Commit and Tree types in order to ease retrieval of TreeEntries
+
+### Changes
+
+ - Provide default value for non existent configuration setting (#67)
+ - Change the tree structure into which libgit2 binaries are located (#70)
+ - Update libgit2 binaries to libgit2/libgit2@28c1451
+
+### Fixes
+
+ - Prevent enumeration of branches from throwing when the repository contains remote branches (#69)
+ - Fix Index.Stage(), Index.Unstage() (#78)
+
## v0.5
### Additions
diff --git a/LibGit2Sharp/Properties/AssemblyInfo.cs b/LibGit2Sharp/Properties/AssemblyInfo.cs
index 56202f45..447e80cd 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.5.0")]
-[assembly: AssemblyFileVersion("0.5.0")]
+[assembly: AssemblyVersion("0.6.0")]
+[assembly: AssemblyFileVersion("0.6.0")]