File tree Expand file tree Collapse file tree 5 files changed +19
-4
lines changed Expand file tree Collapse file tree 5 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+
4
+ ## 0.19.0 - 2024-03-18
5
+ [ 0.18.2...0.19.0] ( https://github.com/rust-lang/git2-rs/compare/git2-0.18.2...git2-0.19.0 )
6
+
7
+ ### Added
8
+
9
+ - Added ` opts:: ` functions to get / set libgit2 mwindow options
10
+ [ #1035 ] ( https://github.com/rust-lang/git2-rs/pull/1035 )
11
+
12
+
13
+ ### Changed
14
+
15
+ - Updated examples to use clap instead of structopt
16
+ [ #1007 ] ( https://github.com/rust-lang/git2-rs/pull/1007 )
17
+
3
18
## 0.18.2 - 2024-02-06
4
19
[ 0.18.1...0.18.2] ( https://github.com/rust-lang/git2-rs/compare/git2-0.18.1...git2-0.18.2 )
5
20
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " git2"
3
- version = " 0.18.2 "
3
+ version = " 0.19.0 "
4
4
authors = [" Josh Triplett <josh@joshtriplett.org>" , " Alex Crichton <alex@alexcrichton.com>" ]
5
5
license = " MIT OR Apache-2.0"
6
6
readme = " README.md"
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ libgit2 bindings for Rust.
6
6
7
7
``` toml
8
8
[dependencies ]
9
- git2 = " 0.18.2 "
9
+ git2 = " 0.19.0 "
10
10
```
11
11
12
12
## Rust version requirements
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ edition = "2018"
16
16
curl = " 0.4.33"
17
17
url = " 2.0"
18
18
log = " 0.4"
19
- git2 = { path = " .." , version = " 0.18 " , default-features = false }
19
+ git2 = { path = " .." , version = " 0.19 " , default-features = false }
20
20
21
21
[dev-dependencies ]
22
22
civet = " 0.11"
Original file line number Diff line number Diff line change 65
65
//! source `Repository`, to ensure that they do not outlive the repository
66
66
//! itself.
67
67
68
- #![ doc( html_root_url = "https://docs.rs/git2/0.18 " ) ]
68
+ #![ doc( html_root_url = "https://docs.rs/git2/0.19 " ) ]
69
69
#![ allow( trivial_numeric_casts, trivial_casts) ]
70
70
#![ deny( missing_docs) ]
71
71
#![ warn( rust_2018_idioms) ]
You can’t perform that action at this time.
0 commit comments