Skip to content

Commit

Permalink
build: Bump version to 2.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
huanmeng-qwq committed Dec 27, 2024
1 parent 9b31f2d commit 5cdd5bf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,15 @@ Lightweight Inventory API for Bukkit(Paper/Spigot) plugins, with 1.8.8 to 1.21 s
<dependency>
<groupId>com.huanmeng-qwq</groupId>
<artifactId>bukkit-gui</artifactId>
<version>2.3.4</version>
<version>2.3.5</version>
</dependency>

<!--Kotlin DSL-->

<dependency>
<groupId>com.huanmeng-qwq</groupId>
<artifactId>bukkit-gui-kotlin-dsl</artifactId>
<version>2.3.4</version>
<version>2.3.5</version>
</dependency>
</dependencies>
```
Expand All @@ -86,9 +86,9 @@ repositories {
}
dependencies {
implementation 'com.huanmeng-qwq:bukkit-gui:2.3.4'
implementation 'com.huanmeng-qwq:bukkit-gui:2.3.5'
// Kotlin DSL
implementation 'com.huanmeng-qwq:bukkit-gui-kotlin-dsl:2.3.4'
implementation 'com.huanmeng-qwq:bukkit-gui-kotlin-dsl:2.3.5'
}
shadowJar {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ allprojects {
}

group = "com.huanmeng-qwq"
version = "2.3.4"
version = "2.3.5"

java {
withSourcesJar()
Expand Down
4 changes: 2 additions & 2 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ dependencies {
compileOnly("org.spigotmc:spigot-api:1.19.2-R0.1-SNAPSHOT")
}

tasks.compileJava{
tasks.compileJava {
exclude("**/test/**")
}

tasks.processResources{
tasks.processResources {
exclude("plugin.yml")
}
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public GuiManager(@NonNull JavaPlugin plugin, boolean registerListener) {
this.plugin = plugin;
this.audiences = BukkitAudiences.create(plugin);
if (!Boolean.getBoolean("gui.disable-bStats")) {
metrics = new Metrics(plugin, 18670, "2.3.4");
metrics = new Metrics(plugin, 18670, "2.3.5");
}
if (registerListener) {
try {
Expand Down

0 comments on commit 5cdd5bf

Please sign in to comment.