From 71c28e2a2592a9dc85afbdb4bc346a0296999eed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Thu, 4 Jan 2024 10:42:09 +0100 Subject: [PATCH 1/2] Release 3.0.0 Bumps the minimum Rust version and removes the pin of `toml_edit`. --- Cargo.toml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4880ef1..bb7f175 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "proc-macro-crate" -version = "2.0.1" +version = "3.0.0" authors = ["Bastian Köcher "] edition = "2021" categories = ["development-tools::procedural-macro-helpers"] @@ -12,11 +12,10 @@ description = """ Replacement for crate (macro_rules keyword) in proc-macros """ readme = "./README.md" -rust-version = "1.66.0" +rust-version = "1.67.0" [dependencies] -toml_edit = "=0.20.2" -toml_datetime = "=0.6.3" +toml_edit = "0.21.0" [dev-dependencies] quote = "1.0.33" From e1a5af33e5a573c878441e38ec991fa23a1b4065 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Thu, 4 Jan 2024 10:42:57 +0100 Subject: [PATCH 2/2] Bump Rust CI version --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 336d502..6d77c77 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -18,7 +18,7 @@ jobs: - uses: dtolnay/rust-toolchain@stable - run: cargo test --all msrv: - name: "Check MSRV: 1.66.0" + name: "Check MSRV: 1.67.0" runs-on: ubuntu-latest steps: - name: Checkout repository @@ -26,7 +26,7 @@ jobs: - name: Install Rust uses: dtolnay/rust-toolchain@stable with: - toolchain: 1.66.0 # MSRV + toolchain: 1.67.0 # MSRV - uses: Swatinem/rust-cache@v2 - name: Default features run: cargo test --all