Skip to content

Commit 02f44d4

Browse files
committed
chore: update version to 4.0.1
1 parent fbb077e commit 02f44d4

7 files changed

Lines changed: 22 additions & 22 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ spigot {
174174

175175
For a contributor, internal usage:
176176

177-
- **Implementation**: [`SubclassDetection`](https://docs.typst.io/spigradle/4.0.0/spigradle/io.typst.spigradle/-subclass-detection/index.html) task
177+
- **Implementation**: [`SubclassDetection`](https://docs.typst.io/spigradle/4.0.1/spigradle/io.typst.spigradle/-subclass-detection/index.html) task
178178
- **Detection framework**: `io.typst.spigradle.detection` package
179179
- `ClassDefinition` - Represents class metadata
180180
- `DetectionContext` - Manages detection state and class graph

docs/bungeecord_plugin.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -119,14 +119,14 @@ dependencies {
119119
**Groovy DSL**
120120
```groovy
121121
plugins {
122-
id 'io.typst.spigradle.bungee' version '4.0.0'
122+
id 'io.typst.spigradle.bungee' version '4.0.1'
123123
}
124124
```
125125

126126
**Kotlin DSL**
127127
```kotlin
128128
plugins {
129-
id("io.typst.spigradle.bungee") version "4.0.0"
129+
id("io.typst.spigradle.bungee") version "4.0.1"
130130
}
131131
```
132132

@@ -161,7 +161,7 @@ For more details, see the [Main Class Detection](../README.md#main-class-detecti
161161

162162
## Configuration
163163

164-
### bungee - [BungeeExtension](https://docs.typst.io/spigradle/4.0.0/spigradle/io.typst.spigradle.bungee/-bungee-extension/index.html)
164+
### bungee - [BungeeExtension](https://docs.typst.io/spigradle/4.0.1/spigradle/io.typst.spigradle.bungee/-bungee-extension/index.html)
165165

166166
The description of your plugin for a 'bungee.yml'.
167167

@@ -244,11 +244,11 @@ All tasks support [UP-TO-DATE checks](https://docs.gradle.org/current/userguide/
244244

245245
**Note:** Debug tasks (server download and run) are currently **Spigot-only**. For BungeeCord, you'll need to set up your own development server.
246246

247-
### detectBungeeEntrypoints - [SubclassDetection](https://docs.typst.io/spigradle/4.0.0/spigradle/io.typst.spigradle/-subclass-detection/index.html)
247+
### detectBungeeEntrypoints - [SubclassDetection](https://docs.typst.io/spigradle/4.0.1/spigradle/io.typst.spigradle/-subclass-detection/index.html)
248248

249249
Finds the main class that extends [net.md_5.bungee.api.plugin.Plugin](https://ci.md-5.net/job/BungeeCord/ws/api/target/apidocs/net/md_5/bungee/api/plugin/Plugin.html).
250250

251-
### generateBungeePluginDescription - [YamlGenerate](https://docs.typst.io/spigradle/4.0.0/spigradle/io.typst.spigradle/-yaml-generate/index.html)
251+
### generateBungeePluginDescription - [YamlGenerate](https://docs.typst.io/spigradle/4.0.1/spigradle/io.typst.spigradle/-yaml-generate/index.html)
252252

253253
*Depends on: `detectBungeeEntrypoints`*
254254

docs/migration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The Spigot plugin ID has been renamed for consistency:
1111
```diff
1212
plugins {
1313
- id("io.typst.spigradle") version "3.7.3"
14-
+ id("io.typst.spigradle.spigot") version "4.0.0"
14+
+ id("io.typst.spigradle.spigot") version "4.0.1"
1515
}
1616
```
1717

docs/multimodule.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Multi-module projects offer several benefits for Minecraft plugin development:
4444
## Requirements
4545

4646
- Gradle 9.0+ (the latest version is recommended)
47-
- Spigradle 4.0.0 or higher
47+
- Spigradle 4.0.1 or higher
4848
- Basic understanding of Gradle multi-module projects
4949

5050
To update your gradle wrapper:

docs/nukkit_plugin.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -119,14 +119,14 @@ dependencies {
119119
**Groovy DSL**
120120
```groovy
121121
plugins {
122-
id 'io.typst.spigradle.nukkit' version '4.0.0'
122+
id 'io.typst.spigradle.nukkit' version '4.0.1'
123123
}
124124
```
125125

126126
**Kotlin DSL**
127127
```kotlin
128128
plugins {
129-
id("io.typst.spigradle.nukkit") version "4.0.0"
129+
id("io.typst.spigradle.nukkit") version "4.0.1"
130130
}
131131
```
132132

@@ -161,7 +161,7 @@ For more details, see the [Main Class Detection](../README.md#main-class-detecti
161161

162162
## Configuration
163163

164-
### nukkit - [NukkitExtension](https://docs.typst.io/spigradle/4.0.0/spigradle/io.typst.spigradle.nukkit/-nukkit-extension/index.html)
164+
### nukkit - [NukkitExtension](https://docs.typst.io/spigradle/4.0.1/spigradle/io.typst.spigradle.nukkit/-nukkit-extension/index.html)
165165

166166
The description of your plugin for a 'plugin.yml'.
167167

@@ -250,11 +250,11 @@ All tasks support [UP-TO-DATE check](https://docs.gradle.org/current/userguide/m
250250

251251
**Note:** Debug tasks (server download and run) are currently **Spigot-only**. For NukkitX, you'll need to set up your own development server.
252252

253-
### detectNukkitEntrypoints - [SubclassDetection](https://docs.typst.io/spigradle/4.0.0/spigradle/io.typst.spigradle/-subclass-detection/index.html)
253+
### detectNukkitEntrypoints - [SubclassDetection](https://docs.typst.io/spigradle/4.0.1/spigradle/io.typst.spigradle/-subclass-detection/index.html)
254254

255255
Finds the main class that extends [cn.nukkit.plugin.PluginBase](https://ci.nukkitx.com/job/NukkitX/job/Nukkit/job/master/javadoc/index.html?overview-summary.html).
256256

257-
### generateNukkitPluginDescription - [YamlGenerate](https://docs.typst.io/spigradle/4.0.0/spigradle/io.typst.spigradle/-yaml-generate/index.html)
257+
### generateNukkitPluginDescription - [YamlGenerate](https://docs.typst.io/spigradle/4.0.1/spigradle/io.typst.spigradle/-yaml-generate/index.html)
258258

259259
*Depends on: `detectNukkitEntrypoints`*
260260

docs/spigot_plugin.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Spigot plugin
44

55
kdoc(
6-
javadoc): [SpigotPlugin.kt](https://docs.typst.io/spigradle/4.0.0/spigradle/io.typst.spigradle.spigot/-spigot-plugin/index.html)
6+
javadoc): [SpigotPlugin.kt](https://docs.typst.io/spigradle/4.0.1/spigradle/io.typst.spigradle.spigot/-spigot-plugin/index.html)
77

88
The [Spigot](https://www.spigotmc.org/wiki/about-spigot/) plugin provides the following features:
99

@@ -139,15 +139,15 @@ dependencies {
139139
**Groovy DSL**
140140
```groovy
141141
plugins {
142-
id 'io.typst.spigradle.spigot' version '4.0.0'
142+
id 'io.typst.spigradle.spigot' version '4.0.1'
143143
id 'org.jetbrains.gradle.plugin.idea-ext' version '1.3' // optional
144144
}
145145
```
146146

147147
**Kotlin DSL**
148148
```kotlin
149149
plugins {
150-
id("io.typst.spigradle.spigot") version "4.0.0"
150+
id("io.typst.spigradle.spigot") version "4.0.1"
151151
id("org.jetbrains.gradle.plugin.idea-ext") version "1.3" // optional
152152
}
153153
```
@@ -191,7 +191,7 @@ For more details, see the [Main Class Detection](../README.md#main-class-detecti
191191

192192
## Configuration
193193

194-
### spigot extension - [SpigotExtension](https://docs.typst.io/spigradle/4.0.0/spigradle/io.typst.spigradle.spigot/-spigot-extension/index.html)
194+
### spigot extension - [SpigotExtension](https://docs.typst.io/spigradle/4.0.1/spigradle/io.typst.spigradle.spigot/-spigot-extension/index.html)
195195

196196
The description of your plugin for a `plugin.yml`.
197197

@@ -279,12 +279,12 @@ configure<SpigotExtension> {
279279

280280
</details>
281281

282-
### debugSpigot extension - [DebugExtension](https://docs.typst.io/spigradle/4.0.0/spigradle/io.typst.spigradle.debug/-debug-extension/index.html)
282+
### debugSpigot extension - [DebugExtension](https://docs.typst.io/spigradle/4.0.1/spigradle/io.typst.spigradle.debug/-debug-extension/index.html)
283283

284284
> **Note:** `debugSpigot` is a configuration extension, NOT a task. The actual task is named `debugProjectName` (
285285
> e.g., `debugMyPlugin`).
286286
287-
To see the platform defaults, see the dokka(javadoc) of [SpigotBasePlugin](https://docs.typst.io/spigradle/4.0.0/spigradle/io.typst.spigradle.spigot/-spigot-base-plugin/index.html)
287+
To see the platform defaults, see the dokka(javadoc) of [SpigotBasePlugin](https://docs.typst.io/spigradle/4.0.1/spigradle/io.typst.spigradle.spigot/-spigot-base-plugin/index.html)
288288

289289
**Available properties:**
290290

@@ -349,12 +349,12 @@ dependencies {
349349
All tasks
350350
supports [UP-TO-DATE check](https://docs.gradle.org/current/userguide/more_about_tasks.html#sec:up_to_date_checks).
351351

352-
### detectSpigotEntrypoints - [SubclassDetection](https://docs.typst.io/spigradle/4.0.0/spigradle/io.typst.spigradle/-subclass-detection/index.html)
352+
### detectSpigotEntrypoints - [SubclassDetection](https://docs.typst.io/spigradle/4.0.1/spigradle/io.typst.spigradle/-subclass-detection/index.html)
353353

354354
Finds the main class
355355
extends [org.bukkit.plugin.java.JavaPlugin](https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/plugin/java/JavaPlugin.html).
356356

357-
### generateSpigotPluginDescription - [YamlGenerate](https://docs.typst.io/spigradle/4.0.0/spigradle/io.typst.spigradle/-yaml-generate/index.html)
357+
### generateSpigotPluginDescription - [YamlGenerate](https://docs.typst.io/spigradle/4.0.1/spigradle/io.typst.spigradle/-yaml-generate/index.html)
358358

359359
*Depends on: `detectSpigotEntrypoints`*
360360

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ org.jetbrains.dokka.experimental.gradle.pluginMode.noWarn=true
55
# Annotation processors discovery from compilation classpath is deprecated
66
kapt.include.compile.classpath=false
77

8-
spigradle.version=4.0.0
8+
spigradle.version=4.0.1
99

1010
java.version=17
1111
kotlin.version=2.2

0 commit comments

Comments
 (0)