Skip to content

Commit

Permalink
version: 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
osipxd committed Jul 30, 2021
1 parent 6fe8954 commit 462d6dd
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
11 changes: 7 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## [Unreleased]

## [0.10.0] - 2021-07-20

### Added

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

## [0.9.2] - 2020-01-25
## [0.9.2] - 2021-01-25

### Fixed
- Fixed task `copyPlugins` when shadow plugin is enabled

## [0.9.1] - 2020-01-16
## [0.9.1] - 2021-01-16

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

## [0.9.0] - 2020-01-08
## [0.9.0] - 2021-01-08

### Reworked tasks hierarchy

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

[unreleased]: https://github.com/EndlessCodeGroup/BukkitGradle/compare/0.9.2...develop
[unreleased]: https://github.com/EndlessCodeGroup/BukkitGradle/compare/0.10.0...develop
[0.10.0]: https://github.com/EndlessCodeGroup/BukkitGradle/compare/0.9.2...0.10.0
[0.9.2]: https://github.com/EndlessCodeGroup/BukkitGradle/compare/0.9.1...0.9.2
[0.9.1]: https://github.com/EndlessCodeGroup/BukkitGradle/compare/0.9.0...0.9.1
[0.9.0]: https://github.com/EndlessCodeGroup/BukkitGradle/compare/0.8.2...0.9.0
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Gradle utilities for easier writing Bukkit plugins.
#### With new plugins mechanism
```kotlin
plugins {
id("ru.endlesscode.bukkitgradle") version "0.9.2"
id("ru.endlesscode.bukkitgradle") version "0.10.0"
}
```

Expand All @@ -51,7 +51,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath("gradle.plugin.ru.endlesscode:bukkit-gradle:0.9.2")
classpath("gradle.plugin.ru.endlesscode:bukkit-gradle:0.10.0")
}
}
Expand Down Expand Up @@ -85,7 +85,7 @@ plugins {
Simple `build.gradle` file that use BukkitGradle:
```kotlin
plugins {
id("ru.endlesscode.bukkitgradle") version "0.9.2"
id("ru.endlesscode.bukkitgradle") version "0.10.0"
}

// Project information
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=ru.endlesscode
description=Bukkit Gradle integration plugins
version=0.10.0-SNAPSHOT
version=0.10.0
org.gradle.jvmargs=-Xmx3G
org.gradle.parallel=true
org.gradle.daemon=true
Expand Down

0 comments on commit 462d6dd

Please sign in to comment.