Skip to content

Commit 8c26619

Browse files
committed
Bump MSRV to 1.69
We want to use `CStr::from_bytes_until_nul` for reading values from rdkafka.
1 parent e69c2aa commit 8c26619

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ See also the [rdkafka-sys changelog](rdkafka-sys/changelog.md).
44

55
## Unreleased
66

7+
* Bump MSRV to 1.69
8+
79
## 0.36.2 (2024-01-16)
810

911
* Update `BaseConsumer::poll` to return `None` when handling rebalance

rdkafka-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
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"

src/lib.rs

Lines changed: 1 addition & 1 deletion
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)