Skip to content

Commit d37635c

Browse files
authored
Merge pull request #13 from anweisen/development
Release v1.3.11
2 parents ee3a32c + 920e16a commit d37635c

File tree

8 files changed

+10
-9
lines changed

8 files changed

+10
-9
lines changed

bukkit-utils/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>net.anweisen.utilities</groupId>
99
<artifactId>root</artifactId>
10-
<version>1.3.10</version>
10+
<version>1.3.11</version>
1111
</parent>
1212

1313
<artifactId>bukkit-utils</artifactId>

common-utils/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>net.anweisen.utilities</groupId>
99
<artifactId>root</artifactId>
10-
<version>1.3.10</version>
10+
<version>1.3.11</version>
1111
</parent>
1212

1313
<artifactId>common-utils</artifactId>

common-utils/src/main/java/net/anweisen/utilities/common/config/document/GsonDocument.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,10 @@ public class GsonDocument extends AbstractDocument {
4747
// Not implemented in some versions of gson
4848
TypeAdapter<Number> NUMBER = new TypeAdapter<Number>() {
4949
@Override
50-
public void write(JsonWriter jsonWriter, Number number) throws IOException {
51-
TypeAdapters.STRING.write(jsonWriter, String.valueOf(number));
50+
public void write(JsonWriter out, Number value) throws IOException {
51+
out.value(value);
5252
}
53+
@Override
5354
public Number read(JsonReader in) throws IOException {
5455
JsonToken jsonToken = in.peek();
5556
switch (jsonToken) {

database-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>net.anweisen.utilities</groupId>
99
<artifactId>root</artifactId>
10-
<version>1.3.10</version>
10+
<version>1.3.11</version>
1111
</parent>
1212

1313
<artifactId>database-api</artifactId>

database-mongodb/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>net.anweisen.utilities</groupId>
99
<artifactId>root</artifactId>
10-
<version>1.3.10</version>
10+
<version>1.3.11</version>
1111
</parent>
1212

1313
<artifactId>database-mongodb</artifactId>

database-sql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>net.anweisen.utilities</groupId>
99
<artifactId>root</artifactId>
10-
<version>1.3.10</version>
10+
<version>1.3.11</version>
1111
</parent>
1212

1313
<artifactId>database-sql</artifactId>

jda-manager/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>net.anweisen.utilities</groupId>
99
<artifactId>root</artifactId>
10-
<version>1.3.10</version>
10+
<version>1.3.11</version>
1111
</parent>
1212

1313
<artifactId>jda-manager</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>net.anweisen.utilities</groupId>
88
<artifactId>root</artifactId>
9-
<version>1.3.10</version>
9+
<version>1.3.11</version>
1010
<packaging>pom</packaging>
1111

1212
<modules>

0 commit comments

Comments
 (0)