提交 c0698cc3 编写于 作者: W Wouter van Oortmerssen

Bumped version to 1.10.1 for all languages.

Change-Id: I9a6256d90ea800834a887afdcf888df412018933
上级 ea8a4296
...@@ -219,7 +219,7 @@ if(FLATBUFFERS_BUILD_SHAREDLIB) ...@@ -219,7 +219,7 @@ if(FLATBUFFERS_BUILD_SHAREDLIB)
# - minor updated when there are additions in API/ABI # - minor updated when there are additions in API/ABI
# - major (ABI number) updated when there are changes in ABI (or removals) # - major (ABI number) updated when there are changes in ABI (or removals)
set(FlatBuffers_Library_SONAME_MAJOR "1") set(FlatBuffers_Library_SONAME_MAJOR "1")
set(FlatBuffers_Library_SONAME_FULL "${FlatBuffers_Library_SONAME_MAJOR}.9.0") set(FlatBuffers_Library_SONAME_FULL "${FlatBuffers_Library_SONAME_MAJOR}.10.0")
set_target_properties(flatbuffers_shared PROPERTIES OUTPUT_NAME flatbuffers set_target_properties(flatbuffers_shared PROPERTIES OUTPUT_NAME flatbuffers
SOVERSION "${FlatBuffers_Library_SONAME_MAJOR}" SOVERSION "${FlatBuffers_Library_SONAME_MAJOR}"
VERSION "${FlatBuffers_Library_SONAME_FULL}") VERSION "${FlatBuffers_Library_SONAME_FULL}")
......
...@@ -10,7 +10,7 @@ from conans import ConanFile, CMake, tools ...@@ -10,7 +10,7 @@ from conans import ConanFile, CMake, tools
class FlatbuffersConan(ConanFile): class FlatbuffersConan(ConanFile):
name = "flatbuffers" name = "flatbuffers"
version = "1.9.0" version = "1.10.0"
license = "Apache-2.0" license = "Apache-2.0"
url = "https://github.com/google/flatbuffers" url = "https://github.com/google/flatbuffers"
homepage = "http://google.github.io/flatbuffers/" homepage = "http://google.github.io/flatbuffers/"
......
name: flat_buffers name: flat_buffers
version: 1.9.2 version: 1.10.0
description: > description: >
FlatBuffers reading and writing library for Dart. Use the flatc compiler to 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 generate Dart classes for a FlatBuffers schema, and this library to assist with
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<parent> <parent>
<groupId>com.google.flatbuffers</groupId> <groupId>com.google.flatbuffers</groupId>
<artifactId>flatbuffers-parent</artifactId> <artifactId>flatbuffers-parent</artifactId>
<version>1.9.0</version> <version>1.10.0</version>
</parent> </parent>
<artifactId>flatbuffers-java-grpc</artifactId> <artifactId>flatbuffers-java-grpc</artifactId>
<name>${project.artifactId}</name> <name>${project.artifactId}</name>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<groupId>com.google.flatbuffers</groupId> <groupId>com.google.flatbuffers</groupId>
<artifactId>flatbuffers-parent</artifactId> <artifactId>flatbuffers-parent</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>
<version>1.9.0</version> <version>1.10.0</version>
<name>flatbuffers-parent</name> <name>flatbuffers-parent</name>
<description>parent pom for flatbuffers java artifacts</description> <description>parent pom for flatbuffers java artifacts</description>
<properties> <properties>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<parent> <parent>
<groupId>com.google.flatbuffers</groupId> <groupId>com.google.flatbuffers</groupId>
<artifactId>flatbuffers-parent</artifactId> <artifactId>flatbuffers-parent</artifactId>
<version>1.9.0</version> <version>1.10.0</version>
</parent> </parent>
<artifactId>grpc-test</artifactId> <artifactId>grpc-test</artifactId>
<description>Example/Test project demonstrating usage of flatbuffers with GRPC-Java instead of protobufs <description>Example/Test project demonstrating usage of flatbuffers with GRPC-Java instead of protobufs
......
...@@ -110,7 +110,7 @@ ...@@ -110,7 +110,7 @@
#endif // !defined(FLATBUFFERS_LITTLEENDIAN) #endif // !defined(FLATBUFFERS_LITTLEENDIAN)
#define FLATBUFFERS_VERSION_MAJOR 1 #define FLATBUFFERS_VERSION_MAJOR 1
#define FLATBUFFERS_VERSION_MINOR 9 #define FLATBUFFERS_VERSION_MINOR 10
#define FLATBUFFERS_VERSION_REVISION 0 #define FLATBUFFERS_VERSION_REVISION 0
#define FLATBUFFERS_STRING_EXPAND(X) #X #define FLATBUFFERS_STRING_EXPAND(X) #X
#define FLATBUFFERS_STRING(X) FLATBUFFERS_STRING_EXPAND(X) #define FLATBUFFERS_STRING(X) FLATBUFFERS_STRING_EXPAND(X)
......
{ {
"name": "flatbuffers", "name": "flatbuffers",
"version": "1.9.0", "version": "1.10.0",
"description": "Memory Efficient Serialization Library", "description": "Memory Efficient Serialization Library",
"files": ["js/flatbuffers.js", "js/flatbuffers.mjs"], "files": ["js/flatbuffers.js", "js/flatbuffers.mjs"],
"main": "js/flatbuffers", "main": "js/flatbuffers",
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>com.google.flatbuffers</groupId> <groupId>com.google.flatbuffers</groupId>
<artifactId>flatbuffers-java</artifactId> <artifactId>flatbuffers-java</artifactId>
<version>1.9.0</version> <version>1.10.0</version>
<packaging>bundle</packaging> <packaging>bundle</packaging>
<name>FlatBuffers Java API</name> <name>FlatBuffers Java API</name>
<description> <description>
......
[package] [package]
name = "flatbuffers" name = "flatbuffers"
version = "0.4.0" version = "0.5.0"
authors = ["Robert Winslow <hello@rwinslow.com>", "FlatBuffers Maintainers"] authors = ["Robert Winslow <hello@rwinslow.com>", "FlatBuffers Maintainers"]
license = "Apache-2.0" license = "Apache-2.0"
description = "Official FlatBuffers Rust runtime library." description = "Official FlatBuffers Rust runtime library."
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
#include <list> #include <list>
#define FLATC_VERSION "1.9.0 (" __DATE__ " " __TIME__ ")" #define FLATC_VERSION "1.10.0 (" __DATE__ " " __TIME__ ")"
namespace flatbuffers { namespace flatbuffers {
......
//Generated by flatc compiler (version 1.9.0) //Generated by flatc compiler (version 1.10.0)
//If you make any local changes, they will be lost //If you make any local changes, they will be lost
//source: monster_test.fbs //source: monster_test.fbs
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册