Skip to content

Commit

Permalink
build: Bump version to 2.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
huanmeng-qwq committed Nov 3, 2024
1 parent e8112a9 commit 5bbd571
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,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.2.4</version>
<version>2.2.5</version>
</dependency>

<!--Kotlin DSL-->

<dependency>
<groupId>com.huanmeng-qwq</groupId>
<artifactId>bukkit-gui-kotlin-dsl</artifactId>
<version>2.2.4</version>
<version>2.2.5</version>
</dependency>
</dependencies>
```
Expand All @@ -81,9 +81,9 @@ repositories {
}
dependencies {
implementation 'com.huanmeng-qwq:bukkit-gui:2.2.4'
implementation 'com.huanmeng-qwq:bukkit-gui:2.2.5'
// Kotlin DSL
implementation 'com.huanmeng-qwq:bukkit-gui-kotlin-dsl:2.2.4'
implementation 'com.huanmeng-qwq:bukkit-gui-kotlin-dsl:2.2.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 @@ -32,7 +32,7 @@ allprojects {
}

group = "com.huanmeng-qwq"
version = "2.2.4"
version = "2.2.5"

java {
withSourcesJar()
Expand Down
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.2.4");
metrics = new Metrics(plugin, 18670, "2.2.5");
}
if (registerListener) {
try {
Expand Down

0 comments on commit 5bbd571

Please sign in to comment.