From edb140a1a7ffceacf6ddd9b83149281fe1daf5ff Mon Sep 17 00:00:00 2001 From: nulltoken Date: Thu, 6 Feb 2014 20:18:00 +0100 Subject: [PATCH] Release LibGit2Sharp v0.16.0 --- CHANGES.md | 16 ++++++++++++++++ LICENSE.md | 2 +- LibGit2Sharp/Properties/AssemblyInfo.cs | 6 +++--- 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: - @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 @@ #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 @@ // 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")] -- GitLab