mirror of
https://github.com/HighCapable/SweetProperty.git
synced 2025-09-04 01:35:37 +08:00
Bump version to 1.0.3
This commit is contained in:
@@ -16,4 +16,14 @@
|
||||
- 作废了 ~~`propertiesFileName`~~ 方法
|
||||
- 新增 `propertiesFileNames` 方法,现在你可以同时设置一组属性配置文件名称了
|
||||
- 新增 `includeKeys` 方法,现在你可以设置仅包含的属性键值名称数组了
|
||||
- 新增 `keyValuesRules` 方法,现在你可以在属性键值装载过程中修改键值内容的实际解析结果
|
||||
- 新增 `keyValuesRules` 方法,现在你可以在属性键值装载过程中修改键值内容的实际解析结果
|
||||
|
||||
## 1.0.3 | 2023.09.26
|
||||
|
||||
- 自动生成代码功能将始终输出源码文件,以方便在生成失败的时候进行调试
|
||||
- 修复 Gradle 生命周期问题
|
||||
- 修复根项目大小写变化后识别为两个项目的问题
|
||||
- 修复在全局配置中使用过其它配置方法后,子项目的 `all` 方法失效问题
|
||||
- 改进并采用 Gradle 项目命名规范
|
||||
- 新增插件自身检查更新功能
|
||||
- 一些其它功能性的改进
|
@@ -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
|
||||
- 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
|
@@ -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"
|
||||
|
@@ -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
|
||||
|
Reference in New Issue
Block a user