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>2013-05-15 14:09:30 +0400
committernulltoken <emeric.fermas@gmail.com>2013-06-02 23:04:47 +0400
commitf2e2fac618f0b656379fa32c967dcdb0dc2742dd (patch)
treee2c55353ccfd17c594e657af3e23c92d2dd65203
parentb2e43678282f374e276ae61eba31ed8c3c9fb238 (diff)
Release LibGit2Sharp v0.12.0v0.12.0
-rw-r--r--CHANGES.md19
-rw-r--r--LibGit2Sharp/Properties/AssemblyInfo.cs4
-rw-r--r--nuget.package/build.nuget.package.cmd5
3 files changed, 26 insertions, 2 deletions
diff --git a/CHANGES.md b/CHANGES.md
index c9a37f6f..f8dbc4c3 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -8,6 +8,25 @@
- CI server: <http://teamcity.codebetter.com/project.html?projectId=project127&guest=1>
- @libgit2sharp: <http://twitter.com/libgit2sharp>
+## v0.12.0 - ([diff](https://github.com/libgit2/libgit2sharp/compare/v0.11.0...v0.12.0))
+
+### Additions
+
+ - Introduce repo.Info.IsShallow
+ - Teach repo.Reset to append to the Reflog
+ - Introduce repo.ObjectDatabase.CreateTag()
+ - Make repo.Diff.Compare() able to define the expected number of context and interhunk lines (#423)
+
+### Changes
+
+ - Obsolete TreeEntryTargetType.Tag
+ - Update libgit2 binaries to libgit2/libgit2@9d9fff3
+
+### Fixes
+
+ - Change probing mechanism to rely on specifically named versions of libgit2 binaries (#241)
+ - Ensure that two versions of LibGit2Sharp can run side by side (#241)
+
## v0.11.0 - ([diff](https://github.com/libgit2/libgit2sharp/compare/v0.10.0...v0.11.0))
### Additions
diff --git a/LibGit2Sharp/Properties/AssemblyInfo.cs b/LibGit2Sharp/Properties/AssemblyInfo.cs
index 159a4085..f3a5e7c2 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.11.0")]
-[assembly: AssemblyFileVersion("0.11.0")]
+[assembly: AssemblyVersion("0.12.0")]
+[assembly: AssemblyFileVersion("0.12.0")]
diff --git a/nuget.package/build.nuget.package.cmd b/nuget.package/build.nuget.package.cmd
index e36c3f15..6def1d6d 100644
--- a/nuget.package/build.nuget.package.cmd
+++ b/nuget.package/build.nuget.package.cmd
@@ -3,6 +3,11 @@ SET BASEDIR=%~dp0
SET SRCDIR=%BASEDIR%..\LibGit2Sharp\
SET CommitSha=%~1
+IF "%CommitSha%" == "" (
+ ECHO "Please provide the Libgit2Sharp commit Sha this package is being built from."
+ EXIT /B 1
+)
+
REM the nuspec file needs to be next to the csproj, so copy it there during the pack operation
COPY "%BASEDIR%LibGit2Sharp.nuspec" "%SRCDIR%"