Skip to content

Commit bec2370

Browse files
committed
Prepare for Java 2.0.1 release
see google#6658
1 parent 12f2eed commit bec2370

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

grpc/flatbuffers-java-grpc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.google.flatbuffers</groupId>
88
<artifactId>flatbuffers-parent</artifactId>
9-
<version>2.0.0</version>
9+
<version>2.0.1</version>
1010
</parent>
1111
<artifactId>flatbuffers-java-grpc</artifactId>
1212
<name>${project.artifactId}</name>

grpc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.google.flatbuffers</groupId>
55
<artifactId>flatbuffers-parent</artifactId>
66
<packaging>pom</packaging>
7-
<version>2.0.0</version>
7+
<version>2.0.1</version>
88
<name>flatbuffers-parent</name>
99
<description>parent pom for flatbuffers java artifacts</description>
1010
<properties>

grpc/tests/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
<parent>
55
<groupId>com.google.flatbuffers</groupId>
66
<artifactId>flatbuffers-parent</artifactId>
7-
<version>2.0.0</version>
7+
<version>2.0.1</version>
88
</parent>
99
<artifactId>grpc-test</artifactId>
1010
<description>Example/Test project demonstrating usage of flatbuffers with GRPC-Java instead of protobufs
1111
</description>
1212
<properties>
13-
<gRPC.version>2.0.0</gRPC.version>
13+
<gRPC.version>2.0.1</gRPC.version>
1414
</properties>
1515
<dependencies>
1616
<dependency>

java/com/google/flatbuffers/ByteBufferReadWriteBuf.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public void setDouble(int index, double value) {
155155

156156
@Override
157157
public int writePosition() {
158-
return ((Buffer) buffer).position();
158+
return buffer.position();
159159
}
160160

161161
@Override

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.google.flatbuffers</groupId>
55
<artifactId>flatbuffers-java</artifactId>
6-
<version>2.0.0</version>
6+
<version>2.0.1</version>
77
<packaging>bundle</packaging>
88
<name>FlatBuffers Java API</name>
99
<description>

0 commit comments

Comments
 (0)