From 433e0769e7c2058ecabe2519be40a61e8f750dbf Mon Sep 17 00:00:00 2001 From: Yang Luo Date: Sat, 2 Dec 2023 21:43:21 +0800 Subject: [PATCH 1/4] fix: bump version to 2.1.0 --- Cargo.toml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 16913082..28c1bbe1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" name = "casbin" readme = "README.md" repository = "https://github.com/casbin/casbin-rs" -version = "2.0.9" +version = "2.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/README.md b/README.md index d85d19c0..fe47e4a0 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Add this package to `Cargo.toml` of your project. (Check https://crates.io/crate ```toml [dependencies] -casbin = { version = "2.0.9", default-features = false, features = ["runtime-async-std", "logging", "incremental"] } +casbin = { version = "2.1.0", default-features = false, features = ["runtime-async-std", "logging", "incremental"] } tokio = { version = "1.10.0", features = ["fs", "io-util"] } ``` From cabad492eec11c208b73e63045e767dd616ce40f Mon Sep 17 00:00:00 2001 From: HGZ-20 Date: Sun, 3 Dec 2023 00:32:29 +0800 Subject: [PATCH 2/4] fix: Automatic release failed --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 14b82cbe..c5306fbb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: login - args: -- ${{ secrets.CARGO_TOKEN }} + args: ${{ secrets.CARGO_TOKEN }} - name: Cargo Publish uses: actions-rs/cargo@v1 From b3c27e2f851082a15c73158f292293d043d296af Mon Sep 17 00:00:00 2001 From: hsluoyz Date: Sun, 3 Dec 2023 00:42:48 +0800 Subject: [PATCH 3/4] Update Cargo.toml --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 28c1bbe1..16913082 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ license = "Apache-2.0" name = "casbin" readme = "README.md" repository = "https://github.com/casbin/casbin-rs" -version = "2.1.0" +version = "2.0.9" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html From 48256c6e8fdbce7b16917b817a13a38efbc00517 Mon Sep 17 00:00:00 2001 From: hsluoyz Date: Sun, 3 Dec 2023 00:43:03 +0800 Subject: [PATCH 4/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fe47e4a0..d85d19c0 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Add this package to `Cargo.toml` of your project. (Check https://crates.io/crate ```toml [dependencies] -casbin = { version = "2.1.0", default-features = false, features = ["runtime-async-std", "logging", "incremental"] } +casbin = { version = "2.0.9", default-features = false, features = ["runtime-async-std", "logging", "incremental"] } tokio = { version = "1.10.0", features = ["fs", "io-util"] } ```