Skip to content

Commit

Permalink
Merge pull request #858 from davidkna/git2150
Browse files Browse the repository at this point in the history
bump libgit2 to 1.5.0
  • Loading branch information
ehuss committed Jul 19, 2022
2 parents 04278a2 + 8871f8e commit 951dce9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libgit2-sys/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "libgit2-sys"
version = "0.14.0+1.4.4"
version = "0.14.0+1.5.0"
authors = ["Josh Triplett <josh@joshtriplett.org>", "Alex Crichton <alex@alexcrichton.com>"]
links = "git2"
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion libgit2-sys/build.rs
Expand Up @@ -14,7 +14,7 @@ fn main() {
let try_to_use_system_libgit2 = !vendored && !zlib_ng_compat;
if try_to_use_system_libgit2 {
let mut cfg = pkg_config::Config::new();
if let Ok(lib) = cfg.range_version("1.4.4".."1.5.0").probe("libgit2") {
if let Ok(lib) = cfg.range_version("1.4.4".."1.6.0").probe("libgit2") {
for include in &lib.include_paths {
println!("cargo:root={}", include.display());
}
Expand Down

0 comments on commit 951dce9

Please sign in to comment.