Skip to content

Commit 69eea91

Browse files
authored
Merge pull request #984 from ehuss/update-changelog
Update changelog for next release.
2 parents 4570c39 + 2aafd80 commit 69eea91

File tree

5 files changed

+56
-2
lines changed

5 files changed

+56
-2
lines changed

CHANGELOG.md

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

3+
## 0.18.0 - 2023-08-28
4+
[0.17.2...0.18.0](https://github.com/rust-lang/git2-rs/compare/0.17.2...git2-0.18.0)
5+
6+
### Added
7+
8+
- Added `Blame::blame_buffer` for getting blame data for a file that has been modified in memory.
9+
[#981](https://github.com/rust-lang/git2-rs/pull/981)
10+
11+
### Changed
12+
13+
- Updated to libgit2 [1.7.0](https://github.com/libgit2/libgit2/releases/tag/v1.7.0).
14+
[#968](https://github.com/rust-lang/git2-rs/pull/968)
15+
- Updated to libgit2 [1.7.1](https://github.com/libgit2/libgit2/releases/tag/v1.7.1).
16+
[#982](https://github.com/rust-lang/git2-rs/pull/982)
17+
- Switched from bitflags 1.x to 2.1. This brings some small changes to types generated by bitflags.
18+
[#973](https://github.com/rust-lang/git2-rs/pull/973)
19+
- Changed `Revwalk::with_hide_callback` to take a mutable reference to its callback to enforce type safety.
20+
[#970](https://github.com/rust-lang/git2-rs/pull/970)
21+
- Implemented `FusedIterator` for many iterators that can support it.
22+
[#955](https://github.com/rust-lang/git2-rs/pull/955)
23+
24+
### Fixed
25+
26+
- Fixed builds with cargo's `-Zminimal-versions`.
27+
[#960](https://github.com/rust-lang/git2-rs/pull/960)
28+
329
## 0.17.2 - 2023-05-27
430
[0.17.1...0.17.2](https://github.com/rust-lang/git2-rs/compare/0.17.1...0.17.2)
531

git2-curl/CHANGELOG.md

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

3+
## 0.19.0 - 2023-08-28
4+
[0.18.0...0.19.0](https://github.com/rust-lang/git2-rs/compare/git2-curl-0.18.0...git2-curl-0.19.0)
5+
6+
- Updated to [git2 0.18.0](../CHANGELOG.md#0180---2023-08-26)
7+
38
## 0.18.0 - 2023-04-02
49
[0.17.0...0.18.0](https://github.com/rust-lang/git2-rs/compare/git2-curl-0.17.0...git2-curl-0.18.0)
510

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.18")]
18+
#![doc(html_root_url = "https://docs.rs/git2-curl/0.19")]
1919
#![deny(missing_docs)]
2020
#![warn(rust_2018_idioms)]
2121
#![cfg_attr(test, deny(warnings))]

libgit2-sys/CHANGELOG.md

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

3+
## 0.16.0+1.7.1 - 2023-08-28
4+
[0.15.2...0.16.0](https://github.com/rust-lang/git2-rs/compare/libgit2-sys-0.15.2+1.6.4...libgit2-sys-0.16.0+1.7.1)
5+
6+
### Added
7+
8+
- Added LIBGIT2_NO_VENDOR environment variable to force using the system libgit2.
9+
[#966](https://github.com/rust-lang/git2-rs/pull/966)
10+
- Added binding for `git_blame_buffer`.
11+
[#981](https://github.com/rust-lang/git2-rs/pull/981)
12+
13+
### Changed
14+
15+
- Updated to libgit2 [1.7.0](https://github.com/libgit2/libgit2/releases/tag/v1.7.0).
16+
[#968](https://github.com/rust-lang/git2-rs/pull/968)
17+
- Updated to libgit2 [1.7.1](https://github.com/libgit2/libgit2/releases/tag/v1.7.1).
18+
[#982](https://github.com/rust-lang/git2-rs/pull/982)
19+
20+
### Fixed
21+
22+
- Fixed builds with cargo's `-Zminimal-versions`.
23+
[#960](https://github.com/rust-lang/git2-rs/pull/960)
24+
25+
326
## 0.15.2+1.6.4 - 2023-05-27
427
[0.15.1...0.15.2](https://github.com/rust-lang/git2-rs/compare/libgit2-sys-0.15.1+1.6.4...libgit2-sys-0.15.2+1.6.4)
528

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.15")]
1+
#![doc(html_root_url = "https://docs.rs/libgit2-sys/0.16")]
22
#![allow(non_camel_case_types, unused_extern_crates)]
33

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

0 commit comments

Comments
 (0)