Skip to content

Commit 26ad050

Browse files
Merge pull request #482 from libgit2/release/v0.22.2
Release 0.22.2
2 parents 797e159 + e5de8ac commit 26ad050

File tree

5 files changed

+13
-12
lines changed

5 files changed

+13
-12
lines changed

CHANGELOG.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11

2+
* Update bundled libgit2 to 0.22.2.
3+
4+
See https://github.com/libgit2/libgit2/releases/tag/v0.22.0,
5+
https://github.com/libgit2/libgit2/releases/tag/v0.22.1 and
6+
https://github.com/libgit2/libgit2/releases/tag/v0.22.2 for a list
7+
of fixed issues and new features.
8+
9+
*Arthur Schreiber*
10+
211
* Add `Rugged::Tree#count_recursive`.
312

413
This counts all blobs in a tree, recursively, with an optional limit
@@ -9,14 +18,6 @@
918

1019
*Andy Delcambre*
1120

12-
* Update bundled libgit2 to 0.22.1.
13-
14-
See https://github.com/libgit2/libgit2/releases/tag/v0.22.0 and
15-
https://github.com/libgit2/libgit2/releases/tag/v0.22.1 for a list
16-
of fixed issues and new features.
17-
18-
*Arthur Schreiber*
19-
2021
* Add missing handling of libgit2 errors in `Rugged::BranchCollection#each`
2122
and `Rugged::BranchCollection#each_name`.
2223

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
rugged (0.22.1b1)
4+
rugged (0.22.2)
55

66
GEM
77
remote: http://rubygems.org/

lib/rugged/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Rugged
2-
Version = VERSION = '0.22.1b1'
2+
Version = VERSION = '0.22.2'
33
end

test/online/fetch_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ def test_fetch_over_https
2727

2828
@repo.fetch("origin")
2929

30-
assert_equal 5, @repo.refs.count
3130
assert_equal [
3231
"refs/remotes/origin/first-merge",
3332
"refs/remotes/origin/master",
3433
"refs/remotes/origin/no-parent",
34+
"refs/tags/annotated_tag",
3535
"refs/tags/blob",
3636
"refs/tags/commit_tree"
3737
], @repo.refs.map(&:name).sort

0 commit comments

Comments
 (0)