Skip to content

Commit 462d6dd

Browse files
committed
version: 0.10.0
1 parent 6fe8954 commit 462d6dd

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

CHANGELOG.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## [Unreleased]
22

3+
## [0.10.0] - 2021-07-20
4+
35
### Added
46

57
- Plugin should be compatible with [configuration cache](https://docs.gradle.org/current/userguide/configuration_cache.html)
@@ -15,12 +17,12 @@
1517
- Add duplicate strategy to processResources (#58)
1618
- Fix spigot core copying (#55)
1719

18-
## [0.9.2] - 2020-01-25
20+
## [0.9.2] - 2021-01-25
1921

2022
### Fixed
2123
- Fixed task `copyPlugins` when shadow plugin is enabled
2224

23-
## [0.9.1] - 2020-01-16
25+
## [0.9.1] - 2021-01-16
2426

2527
### Added
2628
- `codemc()` repository extension
@@ -29,7 +31,7 @@
2931
- **BREAKING CHANGE**: `bukkit` dependency extension renamed to `bukkitApi`.
3032
This name is more consistent, also it avoids conflict with `BukkitExtension` extension name.
3133

32-
## [0.9.0] - 2020-01-08
34+
## [0.9.0] - 2021-01-08
3335

3436
### Reworked tasks hierarchy
3537

@@ -115,7 +117,8 @@ now it is friendly to Kotlin DSL.
115117
[uptodate]: https://docs.gradle.org/current/userguide/more_about_tasks.html#sec:up_to_date_checks
116118
[vault]: https://github.com/MilkBowl/VaultAPI
117119

118-
[unreleased]: https://github.com/EndlessCodeGroup/BukkitGradle/compare/0.9.2...develop
120+
[unreleased]: https://github.com/EndlessCodeGroup/BukkitGradle/compare/0.10.0...develop
121+
[0.10.0]: https://github.com/EndlessCodeGroup/BukkitGradle/compare/0.9.2...0.10.0
119122
[0.9.2]: https://github.com/EndlessCodeGroup/BukkitGradle/compare/0.9.1...0.9.2
120123
[0.9.1]: https://github.com/EndlessCodeGroup/BukkitGradle/compare/0.9.0...0.9.1
121124
[0.9.0]: https://github.com/EndlessCodeGroup/BukkitGradle/compare/0.8.2...0.9.0

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Gradle utilities for easier writing Bukkit plugins.
4040
#### With new plugins mechanism
4141
```kotlin
4242
plugins {
43-
id("ru.endlesscode.bukkitgradle") version "0.9.2"
43+
id("ru.endlesscode.bukkitgradle") version "0.10.0"
4444
}
4545
```
4646

@@ -51,7 +51,7 @@ buildscript {
5151
mavenCentral()
5252
}
5353
dependencies {
54-
classpath("gradle.plugin.ru.endlesscode:bukkit-gradle:0.9.2")
54+
classpath("gradle.plugin.ru.endlesscode:bukkit-gradle:0.10.0")
5555
}
5656
}
5757
@@ -85,7 +85,7 @@ plugins {
8585
Simple `build.gradle` file that use BukkitGradle:
8686
```kotlin
8787
plugins {
88-
id("ru.endlesscode.bukkitgradle") version "0.9.2"
88+
id("ru.endlesscode.bukkitgradle") version "0.10.0"
8989
}
9090

9191
// Project information

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
group=ru.endlesscode
22
description=Bukkit Gradle integration plugins
3-
version=0.10.0-SNAPSHOT
3+
version=0.10.0
44
org.gradle.jvmargs=-Xmx3G
55
org.gradle.parallel=true
66
org.gradle.daemon=true

0 commit comments

Comments
 (0)