Skip to content

Commit

Permalink
Merge pull request #533 from libgit2/arthur/release-0.23.3
Browse files Browse the repository at this point in the history
Release 0.23.3
  • Loading branch information
Vicent Marti committed Oct 6, 2015
2 parents 51eb13f + e277f43 commit 63cbfaf
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 3 deletions.
53 changes: 52 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/rugged/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Rugged
Version = VERSION = '0.23.2'
Version = VERSION = '0.23.3'
end
2 changes: 1 addition & 1 deletion vendor/libgit2
Submodule libgit2 updated 80 files
+0 −12 CHANGELOG.md
+12 −3 CMakeLists.txt
+46 −0 COPYING
+74 −27 examples/network/fetch.c
+0 −1 git.git-authors
+4 −2 include/git2/config.h
+1 −1 include/git2/cred_helpers.h
+0 −19 include/git2/diff.h
+12 −0 include/git2/errors.h
+1 −4 include/git2/sys/filter.h
+2 −3 include/git2/sys/refdb_backend.h
+21 −14 include/git2/transport.h
+2 −2 include/git2/version.h
+1 −2 script/install-deps-osx.sh
+1 −1 src/blame.c
+27 −7 src/blame_git.c
+1 −1 src/blame_git.h
+12 −1 src/branch.c
+2 −1 src/checkout.c
+2 −2 src/clone.c
+13 −13 src/common.h
+8 −7 src/curl_stream.c
+0 −25 src/diff.c
+6 −7 src/diff_driver.c
+4 −0 src/diff_patch.c
+7 −0 src/diff_xdiff.c
+5 −0 src/diff_xdiff.h
+40 −75 src/errors.c
+2 −5 src/filter.c
+9 −25 src/global.c
+0 −1 src/global.h
+3 −3 src/index.c
+2 −2 src/iterator.c
+0 −56 src/merge.c
+76 −22 src/merge_file.c
+0 −14 src/merge_file.h
+2 −3 src/openssl_stream.c
+0 −16 src/path.c
+0 −5 src/path.h
+0 −7 src/refdb_fs.c
+9 −18 src/remote.c
+1 −1 src/stransport_stream.c
+7 −3 src/submodule.c
+8 −22 src/sysdir.c
+9 −1 src/transports/http.c
+1 −1 src/transports/smart_protocol.c
+2 −2 src/transports/ssh.c
+1 −1 src/transports/winhttp.c
+0 −48 src/util.c
+5 −13 src/util.h
+0 −2 src/win32/posix_w32.c
+0 −343 src/win32/w32_crtdbg_stacktrace.c
+0 −93 src/win32/w32_crtdbg_stacktrace.h
+0 −192 src/win32/w32_stack.c
+0 −138 src/win32/w32_stack.h
+5 −3 src/xdiff/xdiff.h
+8 −4 src/xdiff/xdiffi.c
+4 −2 src/xdiff/xhistogram.c
+98 −44 src/xdiff/xmerge.c
+20 −23 tests/clar_libgit2.c
+0 −1 tests/clar_libgit2.h
+0 −19 tests/clar_libgit2_trace.c
+12 −8 tests/core/env.c
+3 −49 tests/core/errors.c
+1 −1 tests/core/ftruncate.c
+26 −0 tests/diff/drivers.c
+0 −32 tests/diff/index.c
+104 −3 tests/filter/custom.c
+0 −108 tests/filter/custom_helpers.c
+0 −18 tests/filter/custom_helpers.h
+1 −1 tests/filter/stream.c
+0 −184 tests/filter/wildcard.c
+19 −0 tests/main.c
+88 −0 tests/merge/files.c
+5 −34 tests/network/fetchlocal.c
+50 −53 tests/online/clone.c
+7 −16 tests/online/push.c
+0 −2 tests/refs/branches/delete.c
+1 −1 tests/repo/init.c
+0 −151 tests/trace/windows/stacktrace.c

0 comments on commit 63cbfaf

Please sign in to comment.