Skip to content

Commit 844b487

Browse files
committed
Upgrade JGit lib from 5.10.0 to 5.12.0.
1 parent 9848699 commit 844b487

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

lib/java/jars/org.eclipse.jgit-5.10.0.202012080955-r.jar renamed to lib/java/jars/org.eclipse.jgit-5.12.0.202106070339-r.jar

2.72 MB
Binary file not shown.
-37.1 KB
Binary file not shown.
Binary file not shown.

lib/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module RJGit
2-
VERSION = "5.10.0.0"
2+
VERSION = "5.12.0.0"
33
end

spec/tag_spec.rb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
describe Tag do
44
before(:each) do
55
@bare_repo = Repo.new(TEST_BARE_REPO_PATH, is_bare: true, create: false)
6+
$stderr.puts "repo has these tags:"
7+
$stderr.puts @bare_repo.tags
68
@tag = @bare_repo.tags['v0.7.0']
79
end
810

@@ -25,8 +27,8 @@
2527
end
2628

2729
it "has a message" do
28-
expect(@tag.full_message).to match /xEQAoIUGzPXEp7yZqzSLSXt4mCn1U6rn/
29-
expect(@tag.short_message).to match /GnuPG v1.4.8/
30+
expect(@tag.full_message).to match /v0.7.0/
31+
expect(@tag.short_message).to match /v0.7.0/
3032
end
3133

3234
end

0 commit comments

Comments
 (0)