Skip to content
This repository was archived by the owner on May 11, 2026. It is now read-only.

Commit 10e3915

Browse files
committed
Bump version to 1.0.4
1 parent 70aa40a commit 10e3915

6 files changed

Lines changed: 17 additions & 4 deletions

File tree

docs/changelog-zh-CN.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,10 @@
2626
- 修复从 `1.0.0` 版本开始的一个本插件与 `Kotlin` 插件的 `Class` 冲突问题
2727
- 更换 Kotlin Multiplatform 中的配置依赖 `autowire(...)` 写法为 `sweet.autowire(...)`
2828
- 生成的代码使用 `@Nonnull` 标记以使其能够在 Kotlin DSL 脚本中识别为非空返回值类型
29+
- 一些其它功能性的改进
30+
31+
## 1.0.4 | 2023.11.14
32+
33+
- 新增 `isUseDependencyResolutionManagement` 选项,默认启用,现在你可以选择是否允许插件使用 `dependencyResolutionManagement` 配置库依赖
34+
- 新增 `isDebug` 选项,默认不启用,你可以启用此选项来在自动装配时输出详细的依赖搜索信息
2935
- 一些其它功能性的改进

docs/changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,11 @@
2929
- Fix a `Class` conflict between this plugin and the `Kotlin` plugin starting from `1.0.0` version
3030
- Change the configuration dependency `autowire(...)` in Kotlin Multiplatform to `sweet.autowire(...)`
3131
- Generated code is marked with `@Nonnull` to make it recognized as a non-null return type in Kotlin DSL scripts
32+
- Some other functional improvements
33+
34+
## 1.0.4 | 2023.11.14
35+
36+
- Added `isUseDependencyResolutionManagement` option, enabled by default, now you can choose whether to allow plugins to
37+
use `dependencyResolutionManagement` to configure library dependencies
38+
- Added `isDebug` option, not enabled by default, you can enable this option to output detailed dependency search information during autowiring
3239
- Some other functional improvements

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ project.description=An easy autowire and manage dependencies Gradle plugin.
44
project.url=https://github.com/HighCapable/SweetDependency
55
project.groupName=com.highcapable.sweetdependency
66
project.moduleName=sweet-dependency
7-
project.version=1.0.3
7+
project.version=1.0.4
88
project.licence.name=Apache License 2.0
99
project.licence.url=https://github.com/HighCapable/SweetDependency/blob/master/LICENSE
1010
project.developer.id="0"

samples/sample-android/settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pluginManagement {
88
plugins {
99
// Import the SweetDependency plugin here
1010
// 在这里引入 SweetDependency 插件
11-
id("com.highcapable.sweetdependency") version "1.0.3"
11+
id("com.highcapable.sweetdependency") version "1.0.4"
1212
}
1313
sweetDependency {
1414
configFileName = "sweet-dependency-config.yaml"

samples/sample-jvm/settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pluginManagement {
88
plugins {
99
// Import the SweetDependency plugin here
1010
// 在这里引入 SweetDependency 插件
11-
id("com.highcapable.sweetdependency") version "1.0.3"
11+
id("com.highcapable.sweetdependency") version "1.0.4"
1212
}
1313
sweetDependency {
1414
configFileName = "sweet-dependency-config.yaml"

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pluginManagement {
77
}
88
}
99
plugins {
10-
id("com.highcapable.sweetdependency") version "1.0.3"
10+
id("com.highcapable.sweetdependency") version "1.0.4"
1111
id("com.highcapable.sweetproperty") version "1.0.5"
1212
}
1313
sweetDependency {

0 commit comments

Comments
 (0)