This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/avro-rs.git


The following commit(s) were added to refs/heads/main by this push:
     new aac8d1d  chore: Bump the MSRV to 1.74.0
aac8d1d is described below

commit aac8d1d999620e74438a190cbffc63bdcc061546
Author: Martin Tzvetanov Grigorov <[email protected]>
AuthorDate: Mon Oct 7 10:09:45 2024 +0300

    chore: Bump the MSRV to 1.74.0
    
    Some transitive dependency needs clap_builder v4.5.19 that requires
    1.74.0
    
    Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
---
 .github/workflows/test-lang-rust-ci.yml     | 2 +-
 .github/workflows/test-lang-rust-clippy.yml | 2 +-
 Cargo.toml                                  | 2 +-
 avro/README.md                              | 2 +-
 avro/src/lib.rs                             | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/test-lang-rust-ci.yml 
b/.github/workflows/test-lang-rust-ci.yml
index 7d9a2d2..8ea784e 100644
--- a/.github/workflows/test-lang-rust-ci.yml
+++ b/.github/workflows/test-lang-rust-ci.yml
@@ -42,7 +42,7 @@ jobs:
           - 'stable'
           - 'beta'
           - 'nightly'
-          - '1.73.0'  # MSRV
+          - '1.74.0'  # MSRV
         target:
           - x86_64-unknown-linux-gnu
           - wasm32-unknown-unknown
diff --git a/.github/workflows/test-lang-rust-clippy.yml 
b/.github/workflows/test-lang-rust-clippy.yml
index 2b44ed4..acc3458 100644
--- a/.github/workflows/test-lang-rust-clippy.yml
+++ b/.github/workflows/test-lang-rust-clippy.yml
@@ -40,7 +40,7 @@ jobs:
       matrix:
         rust:
           - 'stable'
-          - '1.73.0'  # MSRV
+          - '1.74.0'  # MSRV
     steps:
       - uses: actions/checkout@v4
       - uses: dtolnay/rust-toolchain@nightly
diff --git a/Cargo.toml b/Cargo.toml
index 5d70aa6..05f9742 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -33,7 +33,7 @@ version = "0.18.0"
 license = "Apache-2.0"
 repository = "https://github.com/apache/avro-rs";
 edition = "2021"
-rust-version = "1.73.0"
+rust-version = "1.74.0"
 keywords = ["avro", "data", "serialization"]
 categories = ["encoding"]
 documentation = "https://docs.rs/apache-avro";
diff --git a/avro/README.md b/avro/README.md
index 2244ef8..7598a75 100644
--- a/avro/README.md
+++ b/avro/README.md
@@ -118,7 +118,7 @@ versions. If you have troubles upgrading, check the release 
notes.
 
 ## Minimum supported Rust version
 
-1.73.0
+1.74.0
 
 ## Defining a schema
 
diff --git a/avro/src/lib.rs b/avro/src/lib.rs
index c35f672..8dac5c3 100644
--- a/avro/src/lib.rs
+++ b/avro/src/lib.rs
@@ -107,7 +107,7 @@
 //!
 //! # Minimum supported Rust version
 //!
-//! 1.73.0
+//! 1.74.0
 //!
 //! # Defining a schema
 //!

Reply via email to