From a978baa1fedff0784d6c0d0eeabad073ecb02aa0 Mon Sep 17 00:00:00 2001 From: fankesyooni Date: Wed, 8 Nov 2023 14:52:10 +0800 Subject: [PATCH] Bump version to 1.0.5 --- docs/changelog-zh-CN.md | 6 +++++- docs/changelog.md | 6 +++++- gradle.properties | 2 +- settings.gradle.kts | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/docs/changelog-zh-CN.md b/docs/changelog-zh-CN.md index b2142f2..bbd83fe 100644 --- a/docs/changelog-zh-CN.md +++ b/docs/changelog-zh-CN.md @@ -34,4 +34,8 @@ - 修复使用 `${...}` 生成的插值内容依然会携带字符串类型引号问题 - 生成的代码使用 `@Nonnull` 标记以使其能够在 Kotlin DSL 脚本中识别为非空返回值类型 - 新增 `project(...)` 配置方法支持同时配置多个项目 -- 一些其它功能性的改进 \ No newline at end of file +- 一些其它功能性的改进 + +## 1.0.5 | 2023.11.08 + +- 修复遇到特殊字符和重复键值名称造成代码生成失败的严重问题 \ No newline at end of file diff --git a/docs/changelog.md b/docs/changelog.md index a42b5dc..7db83d4 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -35,4 +35,8 @@ - Fix the problem that the interpolation content generated using `${...}` still carries string type quotes - Generated code is marked with `@Nonnull` to make it recognized as a non-null return type in Kotlin DSL scripts - Added `project(...)` configuration method to support configuring multiple projects at the same time -- Some other functional improvements \ No newline at end of file +- Some other functional improvements + +## 1.0.5 | 2023.11.08 + +- Fix a serious issue that caused code generation failure when encountering special characters and duplicate key-value names \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index 22ebccb..e55f760 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.4 +project.version=1.0.5 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 33adccd..3a0bd98 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -8,7 +8,7 @@ pluginManagement { } plugins { id("com.highcapable.sweetdependency") version "1.0.3" - id("com.highcapable.sweetproperty") version "1.0.4" + id("com.highcapable.sweetproperty") version "1.0.5" } sweetDependency { isEnableVerboseMode = false