Skip to content

Commit

Permalink
Release LibGit2Sharp v0.21
Browse files Browse the repository at this point in the history
  • Loading branch information
nulltoken committed Feb 1, 2015
1 parent 254fabc commit 3b0f7e1
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 6 deletions.
28 changes: 26 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,32 @@
- Issue tracker: <https://github.com/libgit2/libgit2sharp/issues>
- @libgit2sharp: <http://twitter.com/libgit2sharp>
- CI servers:
- CodeBetter TeamCity: <http://teamcity.codebetter.com/project.html?projectId=LibGit2Sharp&guest=1>
- Travis: <https://travis-ci.org/libgit2/libgit2sharp>
- Windows (x86/amd64): <https://ci.appveyor.com/project/libgit2/libgit2sharp>
- Linux/MacOsX: <https://travis-ci.org/libgit2/libgit2sharp>

## v0.21 - ([diff](https://github.com/libgit2/libgit2sharp/compare/v0.20.2...v0.21))

### Additions

- Introduce repo.Index.Add() and repo.Index.Remove() (#907)
- Introduce repo.Describe() (#848)
- Teach Repository.Clone to accept a specific branch to checkout (#650, #882)
- Expose IndexEntry.AssumeUnchanged (#928, #929)
- Introduce GlobalSettings.Version.InformationalVersion (#921)

### Changes

- Deprecate Branch.Checkout() (#937)
- Deprecate GlobalSettings.Version.MajorMinorPatch (#921)
- Change Blob.Size output to a long (#892)
- Update libgit2 binaries to libgit2/libgit2@e0902fb

### Fixes

- Fix Network.Fetch() tags retrieval (#927)
- Fix repo.Stage("*") behavior (#907)
- Plug some memory leaks (#883, #910)
- Protect Repository.Clone() from null parameters (#891)

## v0.20.2 - ([diff](https://github.com/libgit2/libgit2sharp/compare/v0.20.1...v0.20.2))

Expand Down
6 changes: 3 additions & 3 deletions LibGit2Sharp/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("0.20.2")]
[assembly: AssemblyFileVersion("0.20.2")]
[assembly: AssemblyInformationalVersion("0.20.2")]
[assembly: AssemblyVersion("0.21.0")]
[assembly: AssemblyFileVersion("0.21.0")]
[assembly: AssemblyInformationalVersion("0.21.0")]
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: '0.20.2.{build}'
version: '0.21.0.{build}'

branches:
only:
Expand Down

0 comments on commit 3b0f7e1

Please sign in to comment.