Skip to content

Commit

Permalink
Release LibGit2Sharp v0.20
Browse files Browse the repository at this point in the history
  • Loading branch information
nulltoken committed Nov 4, 2014
1 parent cf3b806 commit a2682ed
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 3 deletions.
30 changes: 30 additions & 0 deletions CHANGES.md
Expand Up @@ -10,6 +10,36 @@
- CodeBetter TeamCity: <http://teamcity.codebetter.com/project.html?projectId=LibGit2Sharp&guest=1>
- Travis: <https://travis-ci.org/libgit2/libgit2sharp>

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

### Additions

- Teach RemoteUpdater to update the remote url (#803)
- Introduce ObjectDatabase.CreateTree(Index) and Index.Reset(Tree) (#788, #799)
- Add process wide logging feature (#832)
- Add process wide SmartSubtransport registration/unregistration (#528)
- Expose Index.Clear() (#814)

### Changes

- Require Mono 3.6+ on non Windows platform (#800)
- Require NuGet 2.7+ to install the package (#836)
- Throw MergeFetchHeadNotFoundException when Pull cannot find ref to merge (#841)
- Drop Remote.IsSupportedUrl() (#857)
- Deprecate repo.Version in favor of GlobalSettings.Version (#726, #820)
- Remove optional parameters from IRepository (#779, #815)
- Move higher level Index operations to IRepository (#822, #851)
- Deprecate repo.Refs.Move() in favor of repo.Refs.Rename() (#752, #819)
- Update libgit2 binaries to libgit2/libgit2@3f8d005

### Fixes

- Fix compareOptions handling in Diff.Compare<T> (#827, #828)
- Honor MSBuild Publish mechanism (#597, #821)
- Make Configuration.BuildSignature() throw a more descriptive message (#831, #858)
- Prevent Branch.Remote property from throwing when the remote is unresolvable (#823)
- Teach Revert() to clean up repository state when there is nothing to revert (#816)

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

### Additions
Expand Down
4 changes: 2 additions & 2 deletions LibGit2Sharp/Properties/AssemblyInfo.cs
Expand Up @@ -42,5 +42,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("0.19.0")]
[assembly: AssemblyFileVersion("0.19.0")]
[assembly: AssemblyVersion("0.20.0")]
[assembly: AssemblyFileVersion("0.20.0")]
7 changes: 6 additions & 1 deletion README.md
Expand Up @@ -4,9 +4,14 @@

[0]: http://libgit2.github.com/

## Prerequisites

- **Windows:** .Net 4.0+
- **Linux/MacOsX:** Mono 3.6+

## Online resources

- [NuGet package][1]
- [NuGet package][1] (Requires NuGet 2.7+)
- [Source code][2]
- [Continuous integration][3]

Expand Down

0 comments on commit a2682ed

Please sign in to comment.