From 00a2f38bdc8b43237dec70d6f9d49c4ac45903cf Mon Sep 17 00:00:00 2001 From: Hexagon Date: Wed, 24 Jul 2024 23:02:09 +0000 Subject: [PATCH] Dependency update. Prepare 2.0.5 --- .github/workflows/rust.yml | 2 +- Cargo.toml | 8 ++++---- README.md | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 31000a2..9fd45e0 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Build run: cargo build --verbose - name: Run tests diff --git a/Cargo.toml b/Cargo.toml index 3d9aa90..d0a94b4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "croner" -version = "2.0.4" +version = "2.0.5" edition = "2021" license = "MIT" description = "Fully-featured, lightweight, and efficient Rust library designed for parsing and evaluating cron patterns" @@ -16,11 +16,11 @@ name = "croner" path = "src/lib.rs" [dependencies] -chrono = "0.4.31" +chrono = "0.4.38" [dev-dependencies] -chrono-tz = "0.8.4" -criterion = "0.3" +chrono-tz = "0.9.0" +criterion = "0.5.1" [[bench]] name = "croner_bench" diff --git a/README.md b/README.md index 4ae285c..89b0714 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ Add `croner` to your `Cargo.toml` dependencies: ```toml [dependencies] -croner = "2.0.3" # Adjust the version as necessary +croner = "2.0.5" # Adjust the version as necessary ``` ### Usage