Skip to content

Commit c0698cc

Browse files
committed
Bumped version to 1.10.1 for all languages.
Change-Id: I9a6256d90ea800834a887afdcf888df412018933
1 parent ea8a429 commit c0698cc

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ if(FLATBUFFERS_BUILD_SHAREDLIB)
219219
# - minor updated when there are additions in API/ABI
220220
# - major (ABI number) updated when there are changes in ABI (or removals)
221221
set(FlatBuffers_Library_SONAME_MAJOR "1")
222-
set(FlatBuffers_Library_SONAME_FULL "${FlatBuffers_Library_SONAME_MAJOR}.9.0")
222+
set(FlatBuffers_Library_SONAME_FULL "${FlatBuffers_Library_SONAME_MAJOR}.10.0")
223223
set_target_properties(flatbuffers_shared PROPERTIES OUTPUT_NAME flatbuffers
224224
SOVERSION "${FlatBuffers_Library_SONAME_MAJOR}"
225225
VERSION "${FlatBuffers_Library_SONAME_FULL}")

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
class FlatbuffersConan(ConanFile):
1212
name = "flatbuffers"
13-
version = "1.9.0"
13+
version = "1.10.0"
1414
license = "Apache-2.0"
1515
url = "https://github.com/google/flatbuffers"
1616
homepage = "http://google.github.io/flatbuffers/"

dart/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flat_buffers
2-
version: 1.9.2
2+
version: 1.10.0
33
description: >
44
FlatBuffers reading and writing library for Dart. Use the flatc compiler to
55
generate Dart classes for a FlatBuffers schema, and this library to assist with

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>1.9.0</version>
9+
<version>1.10.0</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>1.9.0</version>
7+
<version>1.10.0</version>
88
<name>flatbuffers-parent</name>
99
<description>parent pom for flatbuffers java artifacts</description>
1010
<properties>

grpc/tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.google.flatbuffers</groupId>
66
<artifactId>flatbuffers-parent</artifactId>
7-
<version>1.9.0</version>
7+
<version>1.10.0</version>
88
</parent>
99
<artifactId>grpc-test</artifactId>
1010
<description>Example/Test project demonstrating usage of flatbuffers with GRPC-Java instead of protobufs

include/flatbuffers/base.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
#endif // !defined(FLATBUFFERS_LITTLEENDIAN)
111111

112112
#define FLATBUFFERS_VERSION_MAJOR 1
113-
#define FLATBUFFERS_VERSION_MINOR 9
113+
#define FLATBUFFERS_VERSION_MINOR 10
114114
#define FLATBUFFERS_VERSION_REVISION 0
115115
#define FLATBUFFERS_STRING_EXPAND(X) #X
116116
#define FLATBUFFERS_STRING(X) FLATBUFFERS_STRING_EXPAND(X)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "flatbuffers",
3-
"version": "1.9.0",
3+
"version": "1.10.0",
44
"description": "Memory Efficient Serialization Library",
55
"files": ["js/flatbuffers.js", "js/flatbuffers.mjs"],
66
"main": "js/flatbuffers",

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>com.google.flatbuffers</groupId>
77
<artifactId>flatbuffers-java</artifactId>
8-
<version>1.9.0</version>
8+
<version>1.10.0</version>
99
<packaging>bundle</packaging>
1010
<name>FlatBuffers Java API</name>
1111
<description>

rust/flatbuffers/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "flatbuffers"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Robert Winslow <hello@rwinslow.com>", "FlatBuffers Maintainers"]
55
license = "Apache-2.0"
66
description = "Official FlatBuffers Rust runtime library."

0 commit comments

Comments
 (0)