Skip to content

Commit 19b6d05

Browse files
authored
Merge pull request #982 from ehuss/update-libgit2
Update to libgit2 1.7.1
2 parents 7f21181 + 390c6d6 commit 19b6d05

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

CONTRIBUTING.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@ The following steps can be used to update libgit2:
2424
`cargo test -p git2 -p git2-curl` is a good starting point.
2525
4. Run `systest`.
2626
This will validate for any C-level API problems.
27-
Unfortunately `systest` does not work on nightly, so you'll need to use stable.
2827

29-
`cargo +stable run -p systest`
28+
`cargo run -p systest`
3029

3130
The changelog at <https://github.com/libgit2/libgit2/blob/main/docs/changelog.md>
3231
can be helpful for seeing what has changed.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ stable release as well.
1616

1717
## Version of libgit2
1818

19-
Currently this library requires libgit2 1.7.0 (or newer patch versions). The
19+
Currently this library requires libgit2 1.7.1 (or newer patch versions). The
2020
source for libgit2 is included in the libgit2-sys crate so there's no need to
2121
pre-install the libgit2 library, the libgit2-sys crate will figure that and/or
2222
build that for you.

libgit2-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libgit2-sys"
3-
version = "0.16.0+1.7.0"
3+
version = "0.16.0+1.7.1"
44
authors = ["Josh Triplett <[email protected]>", "Alex Crichton <[email protected]>"]
55
links = "git2"
66
build = "build.rs"

libgit2-sys/build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use std::process::Command;
77
/// Tries to use system libgit2 and emits necessary build script instructions.
88
fn try_system_libgit2() -> Result<pkg_config::Library, pkg_config::Error> {
99
let mut cfg = pkg_config::Config::new();
10-
match cfg.range_version("1.7.0".."1.8.0").probe("libgit2") {
10+
match cfg.range_version("1.7.1".."1.8.0").probe("libgit2") {
1111
Ok(lib) => {
1212
for include in &lib.include_paths {
1313
println!("cargo:root={}", include.display());

0 commit comments

Comments
 (0)