This repository was archived by the owner on Nov 11, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3434- 修复使用 ` ${...} ` 生成的插值内容依然会携带字符串类型引号问题
3535- 生成的代码使用 ` @Nonnull ` 标记以使其能够在 Kotlin DSL 脚本中识别为非空返回值类型
3636- 新增 ` project(...) ` 配置方法支持同时配置多个项目
37- - 一些其它功能性的改进
37+ - 一些其它功能性的改进
38+
39+ ## 1.0.5 | 2023.11.08
40+
41+ - 修复遇到特殊字符和重复键值名称造成代码生成失败的严重问题
Original file line number Diff line number Diff line change 3535- Fix the problem that the interpolation content generated using ` ${...} ` still carries string type quotes
3636- Generated code is marked with ` @Nonnull ` to make it recognized as a non-null return type in Kotlin DSL scripts
3737- Added ` project(...) ` configuration method to support configuring multiple projects at the same time
38- - Some other functional improvements
38+ - Some other functional improvements
39+
40+ ## 1.0.5 | 2023.11.08
41+
42+ - Fix a serious issue that caused code generation failure when encountering special characters and duplicate key-value names
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ project.description=An easy get project properties anywhere Gradle plugin.
44project.url =https://github.com/HighCapable/SweetProperty
55project.groupName =com.highcapable.sweetproperty
66project.moduleName =sweet-property
7- project.version =1.0.4
7+ project.version =1.0.5
88project.licence.name =Apache License 2.0
99project.licence.url =https://github.com/HighCapable/SweetProperty/blob/master/LICENSE
1010project.developer.id ="0"
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ pluginManagement {
88}
99plugins {
1010 id(" com.highcapable.sweetdependency" ) version " 1.0.3"
11- id(" com.highcapable.sweetproperty" ) version " 1.0.4 "
11+ id(" com.highcapable.sweetproperty" ) version " 1.0.5 "
1212}
1313sweetDependency {
1414 isEnableVerboseMode = false
You can’t perform that action at this time.
0 commit comments