Skip to content

Commit d57b3a8

Browse files
committed
Bump MSRV to 1.69.0 to pick up cargo index improvement and CStr::from_bytes_until_nul
1 parent cae9423 commit d57b3a8

File tree

7 files changed

+7
-5
lines changed

7 files changed

+7
-5
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches: [master]
88

99
env:
10-
rust_version: 1.61.0
10+
rust_version: 1.69.0
1111

1212
jobs:
1313
lint:

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords = ["kafka", "rdkafka"]
1010
categories = ["api-bindings"]
1111
edition = "2018"
1212
exclude = ["Cargo.lock"]
13-
rust-version = "1.61"
13+
rust-version = "1.69"
1414

1515
[workspace]
1616
members = ["rdkafka-sys"]

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ re-exported as rdkafka features.
184184

185185
### Minimum supported Rust version (MSRV)
186186

187-
The current minimum supported Rust version (MSRV) is 1.61.0. Note that
187+
The current minimum supported Rust version (MSRV) is 1.69.0. Note that
188188
bumping the MSRV is not considered a breaking change. Any release of
189189
rust-rdkafka may bump the MSRV.
190190

changelog.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
See also the [rdkafka-sys changelog](rdkafka-sys/changelog.md).
44

55
## Unreleased
6+
* Bump MSRV to 1.69 to pick up cargo index improvement and `CStr::from_bytes_until_nul`
67

78
## 0.36.2 (2024-01-16)
89

rdkafka-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description = "Native bindings to the librdkafka library"
1010
keywords = ["kafka", "rdkafka"]
1111
categories = ["external-ffi-bindings"]
1212
edition = "2018"
13-
rust-version = "1.61"
13+
rust-version = "1.69"
1414

1515
[dependencies]
1616
num_enum = "0.5.0"

rdkafka-sys/changelog.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

33
## Unreleased
4+
* Bump MSRV to sync with rdkafka crate
45

56
## v4.7.0+2.2.0 (2023-11-07)
67

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@
176176
//!
177177
//! ### Minimum supported Rust version (MSRV)
178178
//!
179-
//! The current minimum supported Rust version (MSRV) is 1.61.0. Note that
179+
//! The current minimum supported Rust version (MSRV) is 1.69.0. Note that
180180
//! bumping the MSRV is not considered a breaking change. Any release of
181181
//! rust-rdkafka may bump the MSRV.
182182
//!

0 commit comments

Comments
 (0)