Skip to content

Commit

Permalink
[maven-release-plugin] prepare release gson-parent-2.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
eamonnmcmanus committed Jan 6, 2023
1 parent 1a2170b commit 2ce6a61
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -19,7 +19,7 @@ There are a few open-source projects that can convert Java objects to JSON. Howe
Gradle:
```gradle
dependencies {
implementation 'com.google.code.gson:gson:2.10'
implementation 'com.google.code.gson:gson:2.10.1'
}
```

Expand All @@ -28,7 +28,7 @@ Maven:
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.10</version>
<version>2.10.1</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions UserGuide.md
Expand Up @@ -76,7 +76,7 @@ The Gson instance does not maintain any state while invoking JSON operations. So

```gradle
dependencies {
implementation 'com.google.code.gson:gson:2.10'
implementation 'com.google.code.gson:gson:2.10.1'
}
```

Expand All @@ -90,7 +90,7 @@ To use Gson with Maven2/3, you can use the Gson version available in Maven Centr
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.10</version>
<version>2.10.1</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion extras/pom.xml
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.google.code.gson</groupId>
<artifactId>gson-parent</artifactId>
<version>2.11.0-SNAPSHOT</version>
<version>2.10.1</version>
</parent>

<artifactId>gson-extras</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion gson/pom.xml
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.google.code.gson</groupId>
<artifactId>gson-parent</artifactId>
<version>2.11.0-SNAPSHOT</version>
<version>2.10.1</version>
</parent>

<artifactId>gson</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion gson/src/main/java/com/google/gson/JsonObject.java
Expand Up @@ -159,7 +159,7 @@ public int size() {
* Returns true if the number of key/value pairs in the object is zero.
*
* @return true if the number of key/value pairs in the object is zero.
* @since $next-version$
* @since 2.10.1
*/
public boolean isEmpty() {
return members.size() == 0;
Expand Down
2 changes: 1 addition & 1 deletion metrics/pom.xml
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.google.code.gson</groupId>
<artifactId>gson-parent</artifactId>
<version>2.11.0-SNAPSHOT</version>
<version>2.10.1</version>
</parent>

<artifactId>gson-metrics</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -5,7 +5,7 @@

<groupId>com.google.code.gson</groupId>
<artifactId>gson-parent</artifactId>
<version>2.11.0-SNAPSHOT</version>
<version>2.10.1</version>
<packaging>pom</packaging>

<name>Gson Parent</name>
Expand All @@ -28,7 +28,7 @@
<url>https://github.com/google/gson/</url>
<connection>scm:git:https://github.com/google/gson.git</connection>
<developerConnection>scm:git:git@github.com:google/gson.git</developerConnection>
<tag>HEAD</tag>
<tag>gson-parent-2.10.1</tag>
</scm>

<developers>
Expand Down
2 changes: 1 addition & 1 deletion proto/pom.xml
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.google.code.gson</groupId>
<artifactId>gson-parent</artifactId>
<version>2.11.0-SNAPSHOT</version>
<version>2.10.1</version>
</parent>

<artifactId>proto</artifactId>
Expand Down

0 comments on commit 2ce6a61

Please sign in to comment.