diff --git a/CHANGES.md b/CHANGES.md index 1c35dddd5b6cc5737b01de335fe5b6d93ce7c651..507c4871066b1e976282e2e5b7539e2b5660132c 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 f2da33d8b97e6dead22a42ee817ca242cce006c0..2f4d091cd65068823da910ef591712d07042b4f1 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 4fac73f6b93d70c9647078d4fdda23bbc6988eb2..61d00bc335630679d6977dcf6c061da2b35687ed 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")]