Skip to content

Commit

Permalink
Bump MSRV to 1.69.0 to pick up cargo index improvement and `CStr::fro…
Browse files Browse the repository at this point in the history
…m_bytes_until_nul`
  • Loading branch information
davidblewett committed Jan 19, 2024
1 parent cae9423 commit d57b3a8
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches: [master]

env:
rust_version: 1.61.0
rust_version: 1.69.0

jobs:
lint:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ keywords = ["kafka", "rdkafka"]
categories = ["api-bindings"]
edition = "2018"
exclude = ["Cargo.lock"]
rust-version = "1.61"
rust-version = "1.69"

[workspace]
members = ["rdkafka-sys"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ re-exported as rdkafka features.

### Minimum supported Rust version (MSRV)

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

Expand Down
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
See also the [rdkafka-sys changelog](rdkafka-sys/changelog.md).

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

## 0.36.2 (2024-01-16)

Expand Down
2 changes: 1 addition & 1 deletion rdkafka-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description = "Native bindings to the librdkafka library"
keywords = ["kafka", "rdkafka"]
categories = ["external-ffi-bindings"]
edition = "2018"
rust-version = "1.61"
rust-version = "1.69"

[dependencies]
num_enum = "0.5.0"
Expand Down
1 change: 1 addition & 0 deletions rdkafka-sys/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

## Unreleased
* Bump MSRV to sync with rdkafka crate

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

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
//!
//! ### Minimum supported Rust version (MSRV)
//!
//! The current minimum supported Rust version (MSRV) is 1.61.0. Note that
//! The current minimum supported Rust version (MSRV) is 1.69.0. Note that
//! bumping the MSRV is not considered a breaking change. Any release of
//! rust-rdkafka may bump the MSRV.
//!
Expand Down

0 comments on commit d57b3a8

Please sign in to comment.