Skip to content

Commit

Permalink
Tag 2.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tr7zw committed Aug 10, 2024
1 parent 3a44a5e commit 0f92699
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ updates:
ignore:
- dependency-name: com.github.ekryd.sortpom:sortpom-maven-plugin
versions:
- 2.13.2-SNAPSHOT
- 2.13.2
- 2.14.0
- 2.14.1
- 2.15.0
2 changes: 1 addition & 1 deletion item-nbt-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>de.tr7zw</groupId>
<artifactId>item-nbt-parent</artifactId>
<version>2.13.2-SNAPSHOT</version>
<version>2.13.2</version>
</parent>

<artifactId>item-nbt-api</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public enum MinecraftVersion {
private static Logger logger = Logger.getLogger("NBTAPI");

// NBT-API Version
protected static final String VERSION = "2.13.2-SNAPSHOT";
protected static final String VERSION = "2.13.2";

private final int versionId;
private final boolean mojangMapping;
Expand Down
4 changes: 2 additions & 2 deletions item-nbt-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
<parent>
<groupId>de.tr7zw</groupId>
<artifactId>item-nbt-parent</artifactId>
<version>2.13.2-SNAPSHOT</version>
<version>2.13.2</version>
</parent>
<artifactId>item-nbt-api-plugin</artifactId>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>de.tr7zw</groupId>
<artifactId>item-nbt-api</artifactId>
<version>2.13.2-SNAPSHOT</version>
<version>2.13.2</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions mappings-parser/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
<parent>
<groupId>de.tr7zw</groupId>
<artifactId>item-nbt-parent</artifactId>
<version>2.13.2-SNAPSHOT</version>
<version>2.13.2</version>
</parent>
<artifactId>mappings-parser</artifactId>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>de.tr7zw</groupId>
<artifactId>item-nbt-api</artifactId>
<version>2.13.2-SNAPSHOT</version>
<version>2.13.2</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions nbt-data-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>de.tr7zw</groupId>
<artifactId>item-nbt-parent</artifactId>
<version>2.13.2-SNAPSHOT</version>
<version>2.13.2</version>
</parent>

<artifactId>nbt-data-api</artifactId>
Expand All @@ -14,7 +14,7 @@
<dependency>
<groupId>de.tr7zw</groupId>
<artifactId>item-nbt-api</artifactId>
<version>2.13.2-SNAPSHOT</version>
<version>2.13.2</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions nbt-injector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
<parent>
<groupId>de.tr7zw</groupId>
<artifactId>item-nbt-parent</artifactId>
<version>2.13.2-SNAPSHOT</version>
<version>2.13.2</version>
</parent>
<artifactId>nbt-injector</artifactId>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>de.tr7zw</groupId>
<artifactId>item-nbt-api</artifactId>
<version>2.13.2-SNAPSHOT</version>
<version>2.13.2</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.tr7zw</groupId>
<artifactId>item-nbt-parent</artifactId>
<version>2.13.2-SNAPSHOT</version>
<version>2.13.2</version>
<packaging>pom</packaging>
<inceptionYear>2015</inceptionYear>
<organization>
Expand Down
4 changes: 2 additions & 2 deletions spigot.bb
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ Just use the Plugin as Maven dependency and remember to add "NBTAPI" as dependen
<dependency>
<groupId>de.tr7zw</groupId>
<artifactId>item-nbt-api-plugin</artifactId>
<version>2.13.2-SNAPSHOT</version>
<version>2.13.2</version>
</dependency>
[/CODE]
[/SPOILER]
Expand All @@ -122,7 +122,7 @@ Using this method the API gets copied into your plugin. Server owners don't have
<dependency>
<groupId>de.tr7zw</groupId>
<artifactId>item-nbt-api</artifactId>
<version>2.13.2-SNAPSHOT</version>
<version>2.13.2</version>
</dependency>
...
<plugins>
Expand Down

0 comments on commit 0f92699

Please sign in to comment.