Skip to content

Commit db3a3ce

Browse files
committed
Bump versions for 1.8.1
1 parent b318ea3 commit db3a3ce

File tree

9 files changed

+39
-7
lines changed

9 files changed

+39
-7
lines changed

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## 0.19.0 - 2024-06-13
4+
[0.18.3...0.19.0](https://github.com/rust-lang/git2-rs/compare/git2-0.18.3...git2-0.19.0)
5+
6+
### Added
7+
8+
- Added `opts` functions to control server timeouts (`get_server_connect_timeout_in_milliseconds`, `set_server_connect_timeout_in_milliseconds`, `get_server_timeout_in_milliseconds`, `set_server_timeout_in_milliseconds`), and add `ErrorCode::Timeout`.
9+
[#1052](https://github.com/rust-lang/git2-rs/pull/1052)
10+
11+
### Changed
12+
13+
- ❗ Updated to libgit2 [1.8.1](https://github.com/libgit2/libgit2/releases/tag/v1.8.1)
14+
[#1032](https://github.com/rust-lang/git2-rs/pull/1032)
15+
- Reduced size of the `Error` struct.
16+
[#1053](https://github.com/rust-lang/git2-rs/pull/1053)
17+
18+
### Fixed
19+
20+
- Fixed some callbacks to relay the error from the callback to libgit2.
21+
[#1043](https://github.com/rust-lang/git2-rs/pull/1043)
322

423
## 0.18.3 - 2024-03-18
524
[0.18.2...0.18.3](https://github.com/rust-lang/git2-rs/compare/git2-0.18.2...git2-0.18.3)

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.3"
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.3"
9+
git2 = "0.19.0"
1010
```
1111

1212
## Rust version requirements

git2-curl/CHANGELOG.md

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

3+
## 0.20.0 - 2024-06-13
4+
[0.19.0...0.20.0](https://github.com/rust-lang/git2-rs/compare/git2-curl-0.19.0...git2-curl-0.20.0)
5+
6+
- Updated to [git2 0.19.0](../CHANGELOG.md#0190---2024-06-13)
7+
38
## 0.19.0 - 2023-08-28
49
[0.18.0...0.19.0](https://github.com/rust-lang/git2-rs/compare/git2-curl-0.18.0...git2-curl-0.19.0)
510

git2-curl/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "git2-curl"
3-
version = "0.19.0"
3+
version = "0.20.0"
44
authors = ["Josh Triplett <[email protected]>", "Alex Crichton <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/rust-lang/git2-rs"
@@ -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"

git2-curl/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
//! > **NOTE**: At this time this crate likely does not support a `git push`
1616
//! > operation, only clones.
1717
18-
#![doc(html_root_url = "https://docs.rs/git2-curl/0.19")]
18+
#![doc(html_root_url = "https://docs.rs/git2-curl/0.20")]
1919
#![deny(missing_docs)]
2020
#![warn(rust_2018_idioms)]
2121
#![cfg_attr(test, deny(warnings))]

libgit2-sys/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 0.17.0+1.8.1 - 2024-06-13
4+
[0.16.2...0.17.0](https://github.com/rust-lang/git2-rs/compare/libgit2-sys-0.16.2+1.7.2...libgit2-sys-0.17.0+1.8.1)
5+
6+
### Changed
7+
8+
- ❗ Updated to libgit2 [1.8.1](https://github.com/libgit2/libgit2/releases/tag/v1.8.1)
9+
[#1032](https://github.com/rust-lang/git2-rs/pull/1032)
10+
311
## 0.16.2+1.7.2 - 2024-02-06
412
[0.16.1...0.16.2](https://github.com/rust-lang/git2-rs/compare/libgit2-sys-0.16.1+1.7.1...libgit2-sys-0.16.2+1.7.2)
513

libgit2-sys/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/libgit2-sys/0.16")]
1+
#![doc(html_root_url = "https://docs.rs/libgit2-sys/0.17")]
22
#![allow(non_camel_case_types, unused_extern_crates)]
33

44
// This is required to link libz when libssh2-sys is not included.

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)