diff --git a/docs-source/src/en/about/changelog.md b/docs-source/src/en/about/changelog.md index 36904e6..ed7fe7b 100644 --- a/docs-source/src/en/about/changelog.md +++ b/docs-source/src/en/about/changelog.md @@ -18,7 +18,12 @@ Time zone of version release date: **UTC+8** ## kavaref-core -### 1.0.1 | 2025.07.06   +### 1.0.2 | 2025.09.23   + +- Remove the `org.slf4j:slf4j-simple` dependency to fix conflict issues in SpringBoot projects +- Remove the deprecated `T.resolve()` method to avoid its scope contamination. If you still haven't migrated, please follow the documentation instructions to migrate to `T.asResolver()` + +### 1.0.1 | 2025.07.06   - `T.resolve()` has been deprecated because it has namespace pollution problems. It is now recommended to migrate to `T.asResolver()` - Removed the residual `block` method in `KavaRef`. If this method is used, you can manually implement it with `apply` diff --git a/docs-source/src/zh-cn/about/changelog.md b/docs-source/src/zh-cn/about/changelog.md index 4982d55..485e87b 100644 --- a/docs-source/src/zh-cn/about/changelog.md +++ b/docs-source/src/zh-cn/about/changelog.md @@ -10,7 +10,12 @@ ## kavaref-core -### 1.0.1 | 2025.07.06   +### 1.0.2 | 2025.09.23   + +- 移除 `org.slf4j:slf4j-simple` 依赖以修复在 SpringBoot 项目中引起的冲突问题 +- 移除已被弃用的 `T.resolve()` 方法避免其污染作用域,如果仍未迁移,请按照文档指引迁移到 `T.asResolver()` + +### 1.0.1 | 2025.07.06   - `T.resolve()` 已被弃用,因为其存在命名空间污染问题,现在推荐迁移到 `T.asResolver()` - 移除了 `KavaRef` 中存在的残留 `block` 方法,如果有用到此类方法,你可以手动使用 `apply` 来实现 diff --git a/gradle.properties b/gradle.properties index 5bbffd7..bdb2f90 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,7 +2,7 @@ project.name=KavaRef project.url=https://github.com/HighCapable/KavaRef project.groupName=com.highcapable.kavaref -project.kavaref-core.version="1.0.1" +project.kavaref-core.version="1.0.2" project.kavaref-extension.version="1.0.1" project.samples-kavaref-demo.groupName=${project.groupName}.demo project.samples-kavaref-demo.version=universal