Skip to content

Commit

Permalink
release: 1.19.RELEASE
Browse files Browse the repository at this point in the history
+ refactor: refactor sequencer id type from int to long
  • Loading branch information
kevinten10 committed Nov 20, 2022
1 parent a0c81f0 commit 159dbe5
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ For a Maven project, add the following to your `pom.xml` file:
<dependency>
<groupId>group.rxcloud</groupId>
<artifactId>cloud-runtimes-api</artifactId>
<version>1.18.RELEASE</version>
<version>1.19.RELEASE</version>
</dependency>
...
</dependencies>
Expand All @@ -70,6 +70,6 @@ For a Gradle project, add the following to your `build.gradle` file:
dependencies {
// ...
// https://mvnrepository.com/artifact/group.rxcloud/cloud-runtimes-api
implementation group: 'group.rxcloud', name: 'cloud-runtimes-api', version: '1.18.RELEASE'
implementation group: 'group.rxcloud', name: 'cloud-runtimes-api', version: '1.19.RELEASE'
}
```
2 changes: 1 addition & 1 deletion cloud-runtimes-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>group.rxcloud</groupId>
<artifactId>cloud-runtimes</artifactId>
<version>1.18.RELEASE</version>
<version>1.19.RELEASE</version>
</parent>

<artifactId>cloud-runtimes-api</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
public class GetNextIdResponse {

// The next unique id
private int nextId;
private long nextId;

public int getNextId() {
public long getNextId() {
return nextId;
}

public void setNextId(int nextId) {
public void setNextId(long nextId) {
this.nextId = nextId;
}

Expand Down
2 changes: 1 addition & 1 deletion cloud-runtimes-capa/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<artifactId>cloud-runtimes</artifactId>
<groupId>group.rxcloud</groupId>
<version>1.18.RELEASE</version>
<version>1.19.RELEASE</version>
</parent>

<artifactId>cloud-runtimes-capa</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion cloud-runtimes-dapr/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<artifactId>cloud-runtimes</artifactId>
<groupId>group.rxcloud</groupId>
<version>1.18.RELEASE</version>
<version>1.19.RELEASE</version>
</parent>

<artifactId>cloud-runtimes-dapr</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion cloud-runtimes-layotto/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<artifactId>cloud-runtimes</artifactId>
<groupId>group.rxcloud</groupId>
<version>1.18.RELEASE</version>
<version>1.19.RELEASE</version>
</parent>

<artifactId>cloud-runtimes-layotto</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<groupId>group.rxcloud</groupId>
<artifactId>cloud-runtimes</artifactId>
<packaging>pom</packaging>
<version>1.18.RELEASE</version>
<version>1.19.RELEASE</version>

<name>cloud-runtimes-jvm</name>
<description>Cloud Runtimes Specification for the JVM.</description>
Expand Down

0 comments on commit 159dbe5

Please sign in to comment.