diff --git a/CHANGELOG.md b/CHANGELOG.md index 81e1925..10b58a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,25 @@ # 变更日志 | Change log -### 0.4.2 +### 0.4.3 -- 功能: 提供 Aliyun ram AuthPlugin,通过 `features = ["auth-plugin-http"]` 开启 +- 功能: 提供 Aliyun ram AuthPlugin (#245),通过 `features = ["auth-by-aliyun"]` 开启 +- 文档: Add aliyun ram examples and improve doc by @luoxiner in #248 +- 增强: use LazyLock replace lazy_static by @CherishCai in #250 --- -- Feature: Support Aliyun ram AuthPlugin (#245), enabled with `features = ["auth-plugin-http"]` +- Feature: Support Aliyun ram AuthPlugin (#245), enabled with `features = ["auth-by-aliyun"]` +- Doc: Add aliyun ram examples and improve doc by @luoxiner in #248 +- Chore: use LazyLock replace lazy_static by @CherishCai in #250 + + +### 0.4.2 Yank + +- 功能: 提供 Aliyun ram AuthPlugin,通过 `features = ["auth-by-aliyun"]` 开启 + +--- + +- Feature: Support Aliyun ram AuthPlugin (#245), enabled with `features = ["auth-by-aliyun"]` ### 0.4.1 diff --git a/Cargo.toml b/Cargo.toml index 40715a4..e475a89 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ [package] name = "nacos-sdk" -version = "0.4.2" +version = "0.4.3" edition = "2021" authors = ["nacos-group", "CheirshCai <785427346@qq.com>", "onewe <2583021406@qq.com>"] license = "Apache-2.0" @@ -47,7 +47,7 @@ auth-by-aliyun = ["ring", "base64", "chrono"] [dependencies] arc-swap = "1.7" -nacos-macro = { version = "0.1.1", path = "nacos-macro" } +nacos-macro = { version = "0.2.0", path = "nacos-macro" } thiserror = "1.0" tokio = { version = "1", features = ["full"] } diff --git a/nacos-macro/Cargo.toml b/nacos-macro/Cargo.toml index 8fa28a1..5e7e495 100644 --- a/nacos-macro/Cargo.toml +++ b/nacos-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nacos-macro" -version = "0.1.1" +version = "0.2.0" edition = "2021" authors = ["nacos-group", "CheirshCai <785427346@qq.com>", "onewe <2583021406@qq.com>"] license = "Apache-2.0"