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-02-06 23:18:00 +0400
committernulltoken <emeric.fermas@gmail.com>2014-02-06 23:20:48 +0400
commitedb140a1a7ffceacf6ddd9b83149281fe1daf5ff (patch)
tree21409eaa44c3c4148a51ba9195e3d4e71b5b79c0
parent97adc9da1f82b7d1e8e61a801099491e549d386f (diff)
Release LibGit2Sharp v0.16.0v0.16.0
-rw-r--r--CHANGES.md16
-rw-r--r--LICENSE.md2
-rw-r--r--LibGit2Sharp/Properties/AssemblyInfo.cs6
3 files changed, 20 insertions, 4 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 1c35dddd..507c4871 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -8,6 +8,22 @@
- CI server: <http://teamcity.codebetter.com/project.html?projectId=project127&guest=1>
- @libgit2sharp: <http://twitter.com/libgit2sharp>
+## v0.16.0 - ([diff](https://github.com/libgit2/libgit2sharp/compare/v0.15.0...v0.16.0))
+
+### Additions
+
+ - Introduce Repository.Merge() (#608 and #620)
+ - Teach Diff.Compare<>() to return a PatchStats (#610)
+
+### Changes
+
+ - Speed up NuGet post build copy of the native binaries (#613)
+
+### Fixes
+
+ - Fix Remotes.Add(name, url, refspec) to prevent the creation of a default fetch refspec beside the passed in one (#614)
+ - Make LibGit2SharpException.Data expose the correct libgit2 error categories (#601)
+
## v0.15.0 - ([diff](https://github.com/libgit2/libgit2sharp/compare/v0.14.1...v0.15.0))
### Additions
diff --git a/LICENSE.md b/LICENSE.md
index f2da33d8..2f4d091c 100644
--- a/LICENSE.md
+++ b/LICENSE.md
@@ -1,6 +1,6 @@
The MIT License
-Copyright (c) 2011-2013 LibGit2Sharp contributors
+Copyright (c) 2011-2014 LibGit2Sharp contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/LibGit2Sharp/Properties/AssemblyInfo.cs b/LibGit2Sharp/Properties/AssemblyInfo.cs
index 4fac73f6..61d00bc3 100644
--- a/LibGit2Sharp/Properties/AssemblyInfo.cs
+++ b/LibGit2Sharp/Properties/AssemblyInfo.cs
@@ -17,7 +17,7 @@ using System.Runtime.InteropServices;
#endif
[assembly: AssemblyProduct("LibGit2Sharp")]
-[assembly: AssemblyCopyright("Copyright © 2011-2013 LibGit2Sharp contributors")]
+[assembly: AssemblyCopyright("Copyright © 2011-2014 LibGit2Sharp contributors")]
[assembly: CLSCompliant(true)]
@@ -42,5 +42,5 @@ using System.Runtime.InteropServices;
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("0.15.0")]
-[assembly: AssemblyFileVersion("0.15.0")]
+[assembly: AssemblyVersion("0.16.0")]
+[assembly: AssemblyFileVersion("0.16.0")]