Skip to content

Commit

Permalink
build: Bump version to 2.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
huanmeng-qwq committed Dec 27, 2024
1 parent 0d4f815 commit 4df44d5
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.3.6</version>
<version>2.3.7</version>
</dependency>

<!--Kotlin DSL-->

<dependency>
<groupId>com.huanmeng-qwq</groupId>
<artifactId>bukkit-gui-kotlin-dsl</artifactId>
<version>2.3.6</version>
<version>2.3.7</version>
</dependency>
</dependencies>
```
Expand All @@ -81,9 +81,9 @@ repositories {
}
dependencies {
implementation 'com.huanmeng-qwq:bukkit-gui:2.3.6'
implementation 'com.huanmeng-qwq:bukkit-gui:2.3.7'
// Kotlin DSL
implementation 'com.huanmeng-qwq:bukkit-gui-kotlin-dsl:2.3.6'
implementation 'com.huanmeng-qwq:bukkit-gui-kotlin-dsl:2.3.7'
}
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.6"
version = "2.3.7"

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

0 comments on commit 4df44d5

Please sign in to comment.