diff --git a/docs/changelog-zh-CN.md b/docs/changelog-zh-CN.md index 12f05bb..8aab3cd 100644 --- a/docs/changelog-zh-CN.md +++ b/docs/changelog-zh-CN.md @@ -2,4 +2,9 @@ ## 1.0.0 | 2023.09.03 -- 首个版本提交至 Maven \ No newline at end of file +- 首个版本提交至 Maven + +## 1.0.1 | 2023.09.04 + +- 新增启用 `isEnableTypeAutoConversion` 后可以使用 '' 或 "" 强制设置一个键值内容为字符串类型 +- 修改生成的代码中属性键值的内容使用优化后的类型呈现 \ No newline at end of file diff --git a/docs/changelog.md b/docs/changelog.md index 04e947b..6669f7c 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -2,4 +2,9 @@ ## 1.0.0 | 2023.09.03 -- The first version is submitted to Maven \ No newline at end of file +- The first version is submitted to Maven + +## 1.0.1 | 2023.09.04 + +- After enabling `isEnableTypeAutoConversion`, you can use '' or "" to force the content of a value to be a string type +- Modify the content of the properties key-values in the generated code to use the optimized type to render \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index 56ac50a..c4180af 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ project.description=An easy get project properties anywhere Gradle plugin project.url=https://github.com/HighCapable/SweetProperty project.groupName=com.highcapable.sweetproperty project.moduleName=sweet-property -project.version=1.0.0 +project.version=1.0.1 project.licence.name=Apache License 2.0 project.licence.url=https://github.com/HighCapable/SweetProperty/blob/master/LICENSE project.developer.id=0 diff --git a/settings.gradle.kts b/settings.gradle.kts index 5c9117a..a400af4 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -9,7 +9,7 @@ pluginManagement { } plugins { id("com.highcapable.sweetdependency") version "1.0.0" - id("com.highcapable.sweetproperty") version "1.0.0" + id("com.highcapable.sweetproperty") version "1.0.1" } sweetDependency { isEnableVerboseMode = false