Skip to content

Commit

Permalink
Update libgit2 to v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosmn committed Apr 3, 2020
1 parent 654ff2f commit 05cf758
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/rugged/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
# For full terms see the included LICENSE file.

module Rugged
Version = VERSION = '0.99.0'
Version = VERSION = '1.0.0'
end
2 changes: 1 addition & 1 deletion vendor/libgit2
Submodule libgit2 updated 63 files
+1 −0 CMakeLists.txt
+6 −5 README.md
+19 −15 azure-pipelines.yml
+2 −2 azure-pipelines/coverity.sh
+1 −1 azure-pipelines/coverity.yml
+1 −1 azure-pipelines/docker/bionic
+2 −5 azure-pipelines/docker/docurium
+1 −1 azure-pipelines/docker/entrypoint.sh
+3 −3 azure-pipelines/docker/xenial
+22 −18 azure-pipelines/nightly.yml
+2 −2 azure-pipelines/test.sh
+4 −37 cmake/Modules/PkgBuildConfig.cmake
+20 −0 cmake/Modules/SanitizeBool.cmake
+3 −0 cmake/Modules/SelectGSSAPI.cmake
+3 −0 cmake/Modules/SelectHTTPSBackend.cmake
+3 −0 cmake/Modules/SelectHashes.cmake
+2 −0 deps/ntlmclient/CMakeLists.txt
+22 −0 deps/ntlmclient/compat.h
+51 −0 docs/changelog.md
+7 −0 include/git2/deprecated.h
+5 −4 include/git2/repository.h
+109 −2 include/git2/sys/refdb_backend.h
+4 −4 include/git2/version.h
+11 −13 src/CMakeLists.txt
+1 −1 src/blame.c
+8 −4 src/cache.c
+3 −3 src/indexer.c
+6 −3 src/notes.c
+0 −1 src/odb_pack.c
+3 −1 src/pack-objects.c
+21 −1 src/pack.c
+3 −2 src/push.c
+3 −0 src/refdb_fs.c
+63 −50 src/repository.c
+1 −1 src/revwalk.c
+0 −35 src/sha1_lookup.c
+0 −19 src/sha1_lookup.h
+1 −1 src/streams/openssl.c
+2 −2 src/transports/auth_ntlm.c
+13 −2 src/transports/httpclient.c
+1 −1 src/unix/posix.h
+28 −1 src/win32/path_w32.c
+16 −1 src/win32/path_w32.h
+1 −2 src/win32/posix_w32.c
+44 −28 src/worktree.c
+2 −2 tests/blame/blame_helpers.c
+1 −1 tests/blame/blame_helpers.h
+26 −0 tests/blame/buffer.c
+1 −1 tests/config/global.c
+1 −1 tests/config/new.c
+20 −0 tests/core/posix.c
+49 −0 tests/diff/tree.c
+43 −0 tests/diff/workdir.c
+2 −3 tests/ignore/path.c
+1 −1 tests/index/nsec.c
+1 −2 tests/index/tests.c
+1 −1 tests/network/refspecs.c
+4 −8 tests/notes/notes.c
+40 −10 tests/path/win32.c
+3 −0 tests/resources/blametest.git/objects/83/6bc00b06cb60eb0f629e237ad2b58adb2cfc7e
+1 −0 tests/resources/blametest.git/objects/a8/ba8436b5d8ccbdfd5be597c194e7bb8e0a092f
+ tests/resources/blametest.git/objects/f9/264f7fbd31ae7a18b7931ed8946fb0aebb0af3
+1 −1 tests/resources/blametest.git/refs/heads/master

1 comment on commit 05cf758

@ioquatix
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@carlosmn congratulations on bringing this super useful gem to 1.0.0!

Please sign in to comment.