Skip to content

Commit 2603c61

Browse files
committed
Release 0.19.0
1 parent 3778952 commit 2603c61

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-4
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

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+
318
## 0.18.2 - 2024-02-06
419
[0.18.1...0.18.2](https://github.com/rust-lang/git2-rs/compare/git2-0.18.1...git2-0.18.2)
520

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "git2"
3-
version = "0.18.2"
3+
version = "0.19.0"
44
authors = ["Josh Triplett <[email protected]>", "Alex Crichton <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ libgit2 bindings for Rust.
66

77
```toml
88
[dependencies]
9-
git2 = "0.18.2"
9+
git2 = "0.19.0"
1010
```
1111

1212
## Rust version requirements

git2-curl/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ edition = "2018"
1616
curl = "0.4.33"
1717
url = "2.0"
1818
log = "0.4"
19-
git2 = { path = "..", version = "0.18", default-features = false }
19+
git2 = { path = "..", version = "0.19", default-features = false }
2020

2121
[dev-dependencies]
2222
civet = "0.11"

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
//! source `Repository`, to ensure that they do not outlive the repository
6666
//! itself.
6767
68-
#![doc(html_root_url = "https://docs.rs/git2/0.18")]
68+
#![doc(html_root_url = "https://docs.rs/git2/0.19")]
6969
#![allow(trivial_numeric_casts, trivial_casts)]
7070
#![deny(missing_docs)]
7171
#![warn(rust_2018_idioms)]

0 commit comments

Comments
 (0)