Skip to content

Commit 9d2c04d

Browse files
committed
FlatBuffers Version 22.11.22
1 parent e000458 commit 9d2c04d

File tree

161 files changed

+456
-250
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

161 files changed

+456
-250
lines changed

CMake/Version.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
set(VERSION_MAJOR 22)
2-
set(VERSION_MINOR 10)
3-
set(VERSION_PATCH 26)
2+
set(VERSION_MINOR 11)
3+
set(VERSION_PATCH 22)
44
set(VERSION_COMMIT 0)
55

66
if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/.git")

CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -640,6 +640,7 @@ if(FLATBUFFERS_BUILD_TESTS)
640640
compile_flatbuffers_schema_to_embedded_binary(tests/monster_test.fbs "--no-includes;--gen-compare")
641641
compile_flatbuffers_schema_to_cpp(tests/native_inline_table_test.fbs "--gen-compare")
642642
compile_flatbuffers_schema_to_cpp(tests/alignment_test.fbs "--gen-compare")
643+
compile_flatbuffers_schema_to_cpp(tests/key_field/key_field_sample.fbs)
643644
if(NOT (MSVC AND (MSVC_VERSION LESS 1900)))
644645
compile_flatbuffers_schema_to_cpp(tests/monster_extra.fbs) # Test floating-point NAN/INF.
645646
endif()

FlatBuffers.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'FlatBuffers'
3-
s.version = '22.10.26'
3+
s.version = '22.11.22'
44
s.summary = 'FlatBuffers: Memory Efficient Serialization Library'
55

66
s.description = "FlatBuffers is a cross platform serialization library architected for

android/app/src/main/java/generated/com/fbs/app/Animal.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class Animal : Table() {
3636
return if(o != 0) bb.getShort(o + bb_pos).toUShort() else 0u
3737
}
3838
companion object {
39-
fun validateVersion() = Constants.FLATBUFFERS_22_10_26()
39+
fun validateVersion() = Constants.FLATBUFFERS_22_11_22()
4040
fun getRootAsAnimal(_bb: ByteBuffer): Animal = getRootAsAnimal(_bb, Animal())
4141
fun getRootAsAnimal(_bb: ByteBuffer, obj: Animal): Animal {
4242
_bb.order(ByteOrder.LITTLE_ENDIAN)

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: 22.10.26
2+
version: 22.11.22
33
description: FlatBuffers reading and writing library for Dart. Based on original work by Konstantin Scheglov and Paul Berry of the Dart SDK team.
44
homepage: https://github.com/google/flatbuffers
55
documentation: https://google.github.io/flatbuffers/index.html

grpc/examples/swift/Greeter/Sources/Model/greeter_generated.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import FlatBuffers
66

77
public struct models_HelloReply: FlatBufferObject, Verifiable {
88

9-
static func validateVersion() { FlatBuffersVersion_22_10_26() }
9+
static func validateVersion() { FlatBuffersVersion_22_11_22() }
1010
public var __buffer: ByteBuffer! { return _accessor.bb }
1111
private var _accessor: Table
1212

@@ -55,7 +55,7 @@ extension models_HelloReply: Encodable {
5555

5656
public struct models_HelloRequest: FlatBufferObject, Verifiable {
5757

58-
static func validateVersion() { FlatBuffersVersion_22_10_26() }
58+
static func validateVersion() { FlatBuffersVersion_22_11_22() }
5959
public var __buffer: ByteBuffer! { return _accessor.bb }
6060
private var _accessor: Table
6161

include/flatbuffers/base.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@
139139
#endif // !defined(FLATBUFFERS_LITTLEENDIAN)
140140

141141
#define FLATBUFFERS_VERSION_MAJOR 22
142-
#define FLATBUFFERS_VERSION_MINOR 10
143-
#define FLATBUFFERS_VERSION_REVISION 26
142+
#define FLATBUFFERS_VERSION_MINOR 11
143+
#define FLATBUFFERS_VERSION_REVISION 22
144144
#define FLATBUFFERS_STRING_EXPAND(X) #X
145145
#define FLATBUFFERS_STRING(X) FLATBUFFERS_STRING_EXPAND(X)
146146
namespace flatbuffers {

include/flatbuffers/reflection_generated.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
// Ensure the included flatbuffers.h is the same version as when this file was
1010
// generated, otherwise it may not be compatible.
1111
static_assert(FLATBUFFERS_VERSION_MAJOR == 22 &&
12-
FLATBUFFERS_VERSION_MINOR == 10 &&
13-
FLATBUFFERS_VERSION_REVISION == 26,
12+
FLATBUFFERS_VERSION_MINOR == 11 &&
13+
FLATBUFFERS_VERSION_REVISION == 22,
1414
"Non-compatible flatbuffers version included");
1515

1616
namespace reflection {

java/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>22.10.26</version>
6+
<version>22.11.22</version>
77
<packaging>bundle</packaging>
88
<name>FlatBuffers Java API</name>
99
<description>

java/src/main/java/com/google/flatbuffers/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public class Constants {
4646
Changes to the Java implementation need to be sure to change
4747
the version here and in the code generator on every possible
4848
incompatible change */
49-
public static void FLATBUFFERS_22_10_26() {}
49+
public static void FLATBUFFERS_22_11_22() {}
5050
}
5151

5252
/// @endcond

0 commit comments

Comments
 (0)