From 9e7e8cbe9f675123dd41b7c62868acad39188cae Mon Sep 17 00:00:00 2001 From: Wouter van Oortmerssen Date: Wed, 24 Apr 2019 11:34:53 -0700 Subject: Bumped version to 1.11.0 Change-Id: I0c87ad2cf8f8768cf40c5b7abea0add087a5518a --- CMakeLists.txt | 2 +- dart/pubspec.yaml | 2 +- grpc/flatbuffers-java-grpc/pom.xml | 4 ++-- grpc/pom.xml | 2 +- grpc/tests/pom.xml | 4 ++-- include/flatbuffers/base.h | 2 +- package.json | 2 +- pom.xml | 2 +- rust/flatbuffers/Cargo.toml | 2 +- src/flatc.cpp | 2 +- 10 files changed, 12 insertions(+), 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b7acbc7b..119855a9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -289,7 +289,7 @@ if(FLATBUFFERS_BUILD_SHAREDLIB) # - minor updated when there are additions in API/ABI # - major (ABI number) updated when there are changes in ABI (or removals) set(FlatBuffers_Library_SONAME_MAJOR "1") - set(FlatBuffers_Library_SONAME_FULL "${FlatBuffers_Library_SONAME_MAJOR}.10.0") + set(FlatBuffers_Library_SONAME_FULL "${FlatBuffers_Library_SONAME_MAJOR}.11.0") set_target_properties(flatbuffers_shared PROPERTIES OUTPUT_NAME flatbuffers SOVERSION "${FlatBuffers_Library_SONAME_MAJOR}" VERSION "${FlatBuffers_Library_SONAME_FULL}") diff --git a/dart/pubspec.yaml b/dart/pubspec.yaml index 6adf8aab..4761ffc2 100644 --- a/dart/pubspec.yaml +++ b/dart/pubspec.yaml @@ -1,5 +1,5 @@ name: flat_buffers -version: 1.10.0 +version: 1.11.0 description: > FlatBuffers reading and writing library for Dart. Use the flatc compiler to generate Dart classes for a FlatBuffers schema, and this library to assist with diff --git a/grpc/flatbuffers-java-grpc/pom.xml b/grpc/flatbuffers-java-grpc/pom.xml index 479905b6..40799aea 100644 --- a/grpc/flatbuffers-java-grpc/pom.xml +++ b/grpc/flatbuffers-java-grpc/pom.xml @@ -6,7 +6,7 @@ com.google.flatbuffers flatbuffers-parent - 1.10.0 + 1.11.0 flatbuffers-java-grpc ${project.artifactId} @@ -24,7 +24,7 @@ - 1.10.0 + 1.11.0 diff --git a/grpc/pom.xml b/grpc/pom.xml index 1f7b2367..c51348d5 100644 --- a/grpc/pom.xml +++ b/grpc/pom.xml @@ -4,7 +4,7 @@ com.google.flatbuffers flatbuffers-parent pom - 1.10.0 + 1.11.0 flatbuffers-parent parent pom for flatbuffers java artifacts diff --git a/grpc/tests/pom.xml b/grpc/tests/pom.xml index 53489701..5f8731e5 100644 --- a/grpc/tests/pom.xml +++ b/grpc/tests/pom.xml @@ -4,13 +4,13 @@ com.google.flatbuffers flatbuffers-parent - 1.10.0 + 1.11.0 grpc-test Example/Test project demonstrating usage of flatbuffers with GRPC-Java instead of protobufs - 1.10.0 + 1.11.0 diff --git a/include/flatbuffers/base.h b/include/flatbuffers/base.h index a64a587f..ee8021fd 100644 --- a/include/flatbuffers/base.h +++ b/include/flatbuffers/base.h @@ -136,7 +136,7 @@ #endif // !defined(FLATBUFFERS_LITTLEENDIAN) #define FLATBUFFERS_VERSION_MAJOR 1 -#define FLATBUFFERS_VERSION_MINOR 10 +#define FLATBUFFERS_VERSION_MINOR 11 #define FLATBUFFERS_VERSION_REVISION 0 #define FLATBUFFERS_STRING_EXPAND(X) #X #define FLATBUFFERS_STRING(X) FLATBUFFERS_STRING_EXPAND(X) diff --git a/package.json b/package.json index daf76b07..f95e7540 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "flatbuffers", - "version": "1.10.2", + "version": "1.11.0", "description": "Memory Efficient Serialization Library", "files": [ "js/flatbuffers.js", diff --git a/pom.xml b/pom.xml index 3e919115..60bd7f58 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ 4.0.0 com.google.flatbuffers flatbuffers-java - 1.10.1-SNAPSHOT + 1.11.0-SNAPSHOT bundle FlatBuffers Java API diff --git a/rust/flatbuffers/Cargo.toml b/rust/flatbuffers/Cargo.toml index 67bbd8d0..32d9b1b8 100644 --- a/rust/flatbuffers/Cargo.toml +++ b/rust/flatbuffers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "flatbuffers" -version = "0.5.0" +version = "0.6.0" authors = ["Robert Winslow ", "FlatBuffers Maintainers"] license = "Apache-2.0" description = "Official FlatBuffers Rust runtime library." diff --git a/src/flatc.cpp b/src/flatc.cpp index 1362c595..78e4c5bf 100644 --- a/src/flatc.cpp +++ b/src/flatc.cpp @@ -18,7 +18,7 @@ #include -#define FLATC_VERSION "1.10.0" +#define FLATC_VERSION "1.11.0" namespace flatbuffers { -- cgit v1.2.3