This commit is contained in:
mfnalex 2022-03-07 23:01:17 +01:00
parent a54ac737af
commit f52109e671
2 changed files with 22 additions and 2 deletions

View File

@ -1,5 +1,10 @@
# Changelog
## 13.0.2
- Fixed AdvancedChests bug (thanks @ DeadSilenceIV)
- Fixed 1.18.2 support
- Reduced file size by ~130kb
## 13.0.1
- 1.18.2 support
- Updated Chinese translation

19
pom.xml
View File

@ -9,7 +9,7 @@
<name>ChestSort</name>
<url>https://www.chestsort.de</url>
<description>Allows automatic chest sorting!</description>
<version>13.0.1</version>
<version>13.0.2</version>
<packaging>jar</packaging>
<properties>
@ -57,6 +57,8 @@
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<configuration>
<minimizeJar>true</minimizeJar>
<relocations>
<relocation>
@ -95,6 +97,19 @@
</excludes>
</artifactSet>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/**</exclude>
</excludes>
</filter>
<filter>
<artifact>*:*</artifact>
<excludeDefaults>false</excludeDefaults>
<includes>
<include>de/jeff_media/jefflib/internal/nms/**</include>
</includes>
</filter>
<filter>
<artifact>*:*</artifact>
<excludes>
@ -187,7 +202,7 @@
<dependency>
<groupId>de.jeff_media</groupId>
<artifactId>JeffLib</artifactId>
<version>7.6.0-SNAPSHOT</version>
<version>7.7.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>