Skip to content

Commit 2ce6a61

Browse files
committed
[maven-release-plugin] prepare release gson-parent-2.10.1
1 parent 1a2170b commit 2ce6a61

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ There are a few open-source projects that can convert Java objects to JSON. Howe
1919
Gradle:
2020
```gradle
2121
dependencies {
22-
implementation 'com.google.code.gson:gson:2.10'
22+
implementation 'com.google.code.gson:gson:2.10.1'
2323
}
2424
```
2525

@@ -28,7 +28,7 @@ Maven:
2828
<dependency>
2929
<groupId>com.google.code.gson</groupId>
3030
<artifactId>gson</artifactId>
31-
<version>2.10</version>
31+
<version>2.10.1</version>
3232
</dependency>
3333
```
3434

UserGuide.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ The Gson instance does not maintain any state while invoking JSON operations. So
7676

7777
```gradle
7878
dependencies {
79-
implementation 'com.google.code.gson:gson:2.10'
79+
implementation 'com.google.code.gson:gson:2.10.1'
8080
}
8181
```
8282

@@ -90,7 +90,7 @@ To use Gson with Maven2/3, you can use the Gson version available in Maven Centr
9090
<dependency>
9191
<groupId>com.google.code.gson</groupId>
9292
<artifactId>gson</artifactId>
93-
<version>2.10</version>
93+
<version>2.10.1</version>
9494
<scope>compile</scope>
9595
</dependency>
9696
</dependencies>

extras/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>com.google.code.gson</groupId>
55
<artifactId>gson-parent</artifactId>
6-
<version>2.11.0-SNAPSHOT</version>
6+
<version>2.10.1</version>
77
</parent>
88

99
<artifactId>gson-extras</artifactId>

gson/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.google.code.gson</groupId>
66
<artifactId>gson-parent</artifactId>
7-
<version>2.11.0-SNAPSHOT</version>
7+
<version>2.10.1</version>
88
</parent>
99

1010
<artifactId>gson</artifactId>

gson/src/main/java/com/google/gson/JsonObject.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public int size() {
159159
* Returns true if the number of key/value pairs in the object is zero.
160160
*
161161
* @return true if the number of key/value pairs in the object is zero.
162-
* @since $next-version$
162+
* @since 2.10.1
163163
*/
164164
public boolean isEmpty() {
165165
return members.size() == 0;

metrics/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>com.google.code.gson</groupId>
55
<artifactId>gson-parent</artifactId>
6-
<version>2.11.0-SNAPSHOT</version>
6+
<version>2.10.1</version>
77
</parent>
88

99
<artifactId>gson-metrics</artifactId>

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.google.code.gson</groupId>
77
<artifactId>gson-parent</artifactId>
8-
<version>2.11.0-SNAPSHOT</version>
8+
<version>2.10.1</version>
99
<packaging>pom</packaging>
1010

1111
<name>Gson Parent</name>
@@ -28,7 +28,7 @@
2828
<url>https://github.com/google/gson/</url>
2929
<connection>scm:git:https://github.com/google/gson.git</connection>
3030
<developerConnection>scm:git:[email protected]:google/gson.git</developerConnection>
31-
<tag>HEAD</tag>
31+
<tag>gson-parent-2.10.1</tag>
3232
</scm>
3333

3434
<developers>

proto/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.google.code.gson</groupId>
88
<artifactId>gson-parent</artifactId>
9-
<version>2.11.0-SNAPSHOT</version>
9+
<version>2.10.1</version>
1010
</parent>
1111

1212
<artifactId>proto</artifactId>

0 commit comments

Comments
 (0)