Skip to content

Commit

Permalink
[feature] Bump version to 2.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
huanmeng-qwq committed Oct 13, 2023
1 parent 07ec028 commit 4d3fc8f
Show file tree
Hide file tree
Showing 5 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 @@ -55,15 +55,15 @@ Lightweight Inventory API for Bukkit(Paper/Folia/Spigot) plugins, with 1.8.8 to
<dependency>
<groupId>com.huanmeng-qwq</groupId>
<artifactId>Bukkit-Gui</artifactId>
<version>2.1.4</version>
<version>2.1.5</version>
</dependency>

<!--Kotlin DSL-->

<dependency>
<groupId>com.huanmeng-qwq</groupId>
<artifactId>Bukkit-Gui-kotlin-dsl</artifactId>
<version>2.1.4</version>
<version>2.1.5</version>
</dependency>
</dependencies>
```
Expand All @@ -81,9 +81,9 @@ repositories {
}
dependencies {
implementation 'com.huanmeng-qwq:Bukkit-Gui:2.1.4'
implementation 'com.huanmeng-qwq:Bukkit-Gui:2.1.5'
// Kotlin DSL
implementation 'com.huanmeng-qwq:Bukkit-Gui-kotlin-dsl:2.1.4'
implementation 'com.huanmeng-qwq:Bukkit-Gui-kotlin-dsl:2.1.5'
}
shadowJar {
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.huanmeng-qwq</groupId>
<artifactId>Bukkit-Gui-pom</artifactId>
<version>2.1.4</version>
<version>2.1.5</version>
</parent>

<artifactId>Bukkit-Gui</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,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.1.4");
metrics = new Metrics(plugin, 18670, "2.1.5");
}
Schedulers.setSync(new SchedulerSync());
Schedulers.setAsync(new SchedulerAsync());
Expand Down
2 changes: 1 addition & 1 deletion kotlin-dsl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.huanmeng-qwq</groupId>
<artifactId>Bukkit-Gui-pom</artifactId>
<version>2.1.4</version>
<version>2.1.5</version>
</parent>

<artifactId>Bukkit-Gui-kotlin-dsl</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<artifactId>Bukkit-Gui-pom</artifactId>
<groupId>com.huanmeng-qwq</groupId>
<version>2.1.4</version>
<version>2.1.5</version>

<name>Gui</name>
<url>https://github.com/huanmeng-qwq/Gui</url>
Expand Down

0 comments on commit 4d3fc8f

Please sign in to comment.