From a66a1ac8a1023298624174337a1932c83809e120 Mon Sep 17 00:00:00 2001 From: Arthur Schreiber Date: Tue, 6 Oct 2015 02:49:36 +0200 Subject: [PATCH 1/3] Bump libgit2 to 0.23.3. --- vendor/libgit2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/libgit2 b/vendor/libgit2 index 1573acbbd..fe9650288 160000 --- a/vendor/libgit2 +++ b/vendor/libgit2 @@ -1 +1 @@ -Subproject commit 1573acbbd9023b5c447caa7489f9579d8ffc810e +Subproject commit fe965028885fbd8c62dce08e3a86cd3cb3e3b320 From a9261e9b00db411699bcfe0f1da9ec082949b484 Mon Sep 17 00:00:00 2001 From: Arthur Schreiber Date: Tue, 6 Oct 2015 03:19:59 +0200 Subject: [PATCH 2/3] Add missing changelog entries. --- CHANGELOG.md | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 52 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 700f9627e..c7394c29f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,61 @@ + +## Rugged 0.23.3 (October 6, 2015) ## + +* Update bundled libgit2 to 0.23.3. + + See https://github.com/libgit2/libgit2/releases/tag/v0.23.3 + for a list of fixed issues and new features. + + *Arthur Schreiber* + +## Rugged 0.23.2 (August 13, 2015) ## + +* Update bundled libgit2 to 98f7bd289dfb172473b7d7353d4b0f0b09c67937. + + *Vicent Martí* + +## Rugged 0.23.1 (August 11, 2015) ## + +* Update bundled libgit2 to 98f7bd289dfb172473b7d7353d4b0f0b09c67937. + + *Vicent Martí* + +## Rugged 0.23.0 (July 6, 2015) ## + +* Update bundled libgit2 to 0.23.0. + + See https://github.com/libgit2/libgit2/releases/tag/v0.23.0 + for a list of fixed issues and new features. + + *Arthur Schreiber* + * Add `Rugged::Repository#checkout_index`. - This allows to perform checkout from a given GIT index. + This allows to perform checkout from a given index. It might be handy in case of manual merge conflicts resolution with user intervention. *Dmytro Milinevskyy* +* Remove `Rugged::Submodule#reset_update_rule`, `Rugged::Submodule#reset_ignore_rule` + and `Rugged::Submodule#save`. + + These methods were removed due to changes in the underlying libgit2 API. + + *Arthur Schreiber* + +* Add `Rugged::Blob#loc`. + + Returns the number of lines in a blob, assuming it is plaintext. + + *Vicent Martí* + +* Add `Rugged::Walker.walk`. + + This API allows creating a walker, performing a walk, and cleaning it up + immediately after the walk was performed. + + *Vicent Martí* + * Add accessors for the Repository ident. Added `Repository#ident` and `Repository#ident=` to read and set the From e277f43b4710fcd4ada968042ef689803b7a88a7 Mon Sep 17 00:00:00 2001 From: Arthur Schreiber Date: Tue, 6 Oct 2015 03:16:16 +0200 Subject: [PATCH 3/3] Release 0.23.3. --- lib/rugged/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rugged/version.rb b/lib/rugged/version.rb index d37e02866..551abab8a 100644 --- a/lib/rugged/version.rb +++ b/lib/rugged/version.rb @@ -1,3 +1,3 @@ module Rugged - Version = VERSION = '0.23.2' + Version = VERSION = '0.23.3' end