Skip to content

Release LibGit2Sharp v0.20 #860

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 5, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
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
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.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
Original file line number Diff line number Diff line change
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