diff --git a/docs/changelog-zh-CN.md b/docs/changelog-zh-CN.md index f01c730..22a7576 100644 --- a/docs/changelog-zh-CN.md +++ b/docs/changelog-zh-CN.md @@ -16,4 +16,14 @@ - 作废了 ~~`propertiesFileName`~~ 方法 - 新增 `propertiesFileNames` 方法,现在你可以同时设置一组属性配置文件名称了 - 新增 `includeKeys` 方法,现在你可以设置仅包含的属性键值名称数组了 -- 新增 `keyValuesRules` 方法,现在你可以在属性键值装载过程中修改键值内容的实际解析结果 \ No newline at end of file +- 新增 `keyValuesRules` 方法,现在你可以在属性键值装载过程中修改键值内容的实际解析结果 + +## 1.0.3 | 2023.09.26 + +- 自动生成代码功能将始终输出源码文件,以方便在生成失败的时候进行调试 +- 修复 Gradle 生命周期问题 +- 修复根项目大小写变化后识别为两个项目的问题 +- 修复在全局配置中使用过其它配置方法后,子项目的 `all` 方法失效问题 +- 改进并采用 Gradle 项目命名规范 +- 新增插件自身检查更新功能 +- 一些其它功能性的改进 \ No newline at end of file diff --git a/docs/changelog.md b/docs/changelog.md index 99f71bd..350b940 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -17,4 +17,14 @@ - Deprecated ~~`propertiesFileName`~~ method - Added `propertiesFileNames` method, now you can set a group of properties file names at the same time - Added `includeKeys` method, now you can set an array of properties key names to include only -- Added `keyValuesRules` method, now you can modify the actual parsing result of the value content during the properties key-values loading process \ No newline at end of file +- Added `keyValuesRules` method, now you can modify the actual parsing result of the value content during the properties key-values loading process + +## 1.0.3 | 2023.09.26 + +- The automatic code generation function will always output source code files to facilitate debugging when the generation fails +- Fix Gradle lifecycle problem +- Fix root project was recognized as two projects after the case was changed +- Fix `all` function of the sub-project fails after using other configuration functions in the global configuration +- Improve and adopt Gradle project naming convention +- Added plugin own update function +- Some other functional improvements \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index dafb3d9..f315585 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.2 +project.version=1.0.3 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 8d3e00b..fa8869c 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -8,7 +8,7 @@ pluginManagement { } plugins { id("com.highcapable.sweetdependency") version "1.0.2" - id("com.highcapable.sweetproperty") version "1.0.2" + id("com.highcapable.sweetproperty") version "1.0.3" } sweetDependency { isEnableVerboseMode = false