Skip to content

Commit 53ec8ec

Browse files
committed
version: 1.0.0
1 parent 83595da commit 53ec8ec

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## [Unreleased]
22

3+
*No changes yet*
4+
5+
## [1.0.0] - 2025-04-18
6+
37
### Pivot!
48

59
After a 4-year hiatus in releases, the plugin landscape has evolved significantly.
@@ -187,7 +191,8 @@ now it is friendly to Kotlin DSL.
187191
[uptodate]: https://docs.gradle.org/current/userguide/more_about_tasks.html#sec:up_to_date_checks
188192
[vault]: https://github.com/MilkBowl/VaultAPI
189193

190-
[unreleased]: https://github.com/EndlessCodeGroup/BukkitGradle/compare/0.10.1...develop
194+
[unreleased]: https://github.com/EndlessCodeGroup/BukkitGradle/compare/1.0.0...develop
195+
[1.0.0]: https://github.com/EndlessCodeGroup/BukkitGradle/compare/0.10.1...1.0.0
191196
[0.10.1]: https://github.com/EndlessCodeGroup/BukkitGradle/compare/0.10.0...0.10.1
192197
[0.10.0]: https://github.com/EndlessCodeGroup/BukkitGradle/compare/0.9.2...0.10.0
193198
[0.9.2]: https://github.com/EndlessCodeGroup/BukkitGradle/compare/0.9.1...0.9.2

README.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,31 +15,28 @@ Gradle utilities to simplify Bukkit/Spigot plugins writing and debugging.
1515
- [Running Dev server](#running-dev-server)
1616
- [Dev server configuration](#dev-server-configuration)
1717
- [Migration Guide](#migration-guide)
18+
- [Upgrade from 0.10.x](#upgrade-from-010x)
1819
- [Upgrade from 0.8.x](#upgrade-from-08x)
1920
- [License](#license)
2021

2122
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
2223

23-
#### Features:
24+
#### Features
25+
2426
- Sets up compiler encoding to UTF-8
25-
- Sets archivesBaseName to plugin name
26-
- Supports APIs: Bukkit, CraftBukkit, Spigot, Paper
2727
- Provides short extension functions to add common repositories and dependencies
2828
- Generates plugin.yml from Gradle project information
2929
- Allows running dev server from IDE
3030
- Runs server using [jpenilla/run-task]
3131

32-
#### TODO:
33-
- Add smart dependency system
34-
3532
## Installation
3633

3734
> [!NOTE]
3835
> BukkitGradle requires Gradle 8.0+ to run
3936
4037
```kotlin
4138
plugins {
42-
id("ru.endlesscode.bukkitgradle") version "0.10.1"
39+
id("ru.endlesscode.bukkitgradle") version "1.0.0"
4340
}
4441
```
4542

@@ -79,7 +76,7 @@ These values will be used to generate the `plugin.yml` file:
7976

8077
```kotlin
8178
plugins {
82-
id("ru.endlesscode.bukkitgradle") version "0.10.1"
79+
id("ru.endlesscode.bukkitgradle") version "1.0.0"
8380
}
8481

8582
group = "com.example.myplugin"

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
group=ru.endlesscode
2-
description=Bukkit Gradle integration plugins
3-
version=0.11.0-SNAPSHOT
2+
description=Simple development of Bukkit plugins with Gradle
3+
version=1.0.0
44
org.gradle.jvmargs=-Xmx3G
55
org.gradle.parallel=true
66
org.gradle.daemon=true

0 commit comments

Comments
 (0)