Skip to content

Commit bd280a8

Browse files
committed
v0.3.0
1 parent ef26aa2 commit bd280a8

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A binary and JSON serialization library for Java.
1212

1313
```kts
1414
dependencies {
15-
implementation("dev.mudkip:alpine-binary:0.2.0")
15+
implementation("dev.mudkip:alpine-binary:0.3.0")
1616
implementation("io.netty:netty-buffer:4.2.10.Final")
1717
}
1818
```
@@ -25,7 +25,7 @@ dependencies {
2525

2626
```groovy
2727
dependencies {
28-
implementation 'dev.mudkip:alpine-binary:0.2.0'
28+
implementation 'dev.mudkip:alpine-binary:0.3.0'
2929
implementation 'io.netty:netty-buffer:4.2.10.Final'
3030
}
3131
```
@@ -40,7 +40,7 @@ dependencies {
4040
<dependency>
4141
<groupId>dev.mudkip</groupId>
4242
<artifactId>alpine-binary</artifactId>
43-
<version>0.2.0</version>
43+
<version>0.3.0</version>
4444
</dependency>
4545

4646
<dependency>
@@ -60,7 +60,7 @@ dependencies {
6060

6161
```kts
6262
dependencies {
63-
implementation("dev.mudkip:alpine-json:0.2.0")
63+
implementation("dev.mudkip:alpine-json:0.3.0")
6464
}
6565
```
6666

@@ -72,7 +72,7 @@ dependencies {
7272

7373
```groovy
7474
dependencies {
75-
implementation 'dev.mudkip:alpine-json:0.2.0'
75+
implementation 'dev.mudkip:alpine-json:0.3.0'
7676
}
7777
```
7878

@@ -86,7 +86,7 @@ dependencies {
8686
<dependency>
8787
<groupId>dev.mudkip</groupId>
8888
<artifactId>alpine-json</artifactId>
89-
<version>0.2.0</version>
89+
<version>0.3.0</version>
9090
</dependency>
9191
```
9292

json/src/main/java/alpine/json/JsonWriter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ private void writeObject(StringBuilder builder, ObjectElement element, Json.Form
137137
});
138138

139139
if (!firstElement[0]) {
140-
writeIndent(builder, formatting, depth);
140+
this.writeIndentation(builder, formatting, depth);
141141
}
142142

143143
builder.append(END_OBJECT);

0 commit comments

Comments
 (0)