Skip to content

Commit

Permalink
Release LibGit2Sharp v0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nulltoken committed Jun 2, 2013
1 parent b2e4367 commit f2e2fac
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
19 changes: 19 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions LibGit2Sharp/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@
// 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")]
5 changes: 5 additions & 0 deletions nuget.package/build.nuget.package.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -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%"

Expand Down

0 comments on commit f2e2fac

Please sign in to comment.