Skip to content

Commit 8f62556

Browse files
authored
FlatBuffers Version 22.11.23 (#7662)
1 parent 9d2c04d commit 8f62556

File tree

159 files changed

+212
-212
lines changed

Some content is hidden

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

159 files changed

+212
-212
lines changed

CMake/Version.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
set(VERSION_MAJOR 22)
22
set(VERSION_MINOR 11)
3-
set(VERSION_PATCH 22)
3+
set(VERSION_PATCH 23)
44
set(VERSION_COMMIT 0)
55

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

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.11.22'
3+
s.version = '22.11.23'
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_11_22()
39+
fun validateVersion() = Constants.FLATBUFFERS_22_11_23()
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.11.22
2+
version: 22.11.23
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_11_22() }
9+
static func validateVersion() { FlatBuffersVersion_22_11_23() }
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_11_22() }
58+
static func validateVersion() { FlatBuffersVersion_22_11_23() }
5959
public var __buffer: ByteBuffer! { return _accessor.bb }
6060
private var _accessor: Table
6161

include/flatbuffers/base.h

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

141141
#define FLATBUFFERS_VERSION_MAJOR 22
142142
#define FLATBUFFERS_VERSION_MINOR 11
143-
#define FLATBUFFERS_VERSION_REVISION 22
143+
#define FLATBUFFERS_VERSION_REVISION 23
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// generated, otherwise it may not be compatible.
1111
static_assert(FLATBUFFERS_VERSION_MAJOR == 22 &&
1212
FLATBUFFERS_VERSION_MINOR == 11 &&
13-
FLATBUFFERS_VERSION_REVISION == 22,
13+
FLATBUFFERS_VERSION_REVISION == 23,
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.11.22</version>
6+
<version>22.11.23</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_11_22() {}
49+
public static void FLATBUFFERS_22_11_23() {}
5050
}
5151

5252
/// @endcond

net/FlatBuffers/FlatBufferConstants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ the runtime and generated code are modified in sync.
3232
Changes to the C# implementation need to be sure to change
3333
the version here and in the code generator on every possible
3434
incompatible change */
35-
public static void FLATBUFFERS_22_11_22() {}
35+
public static void FLATBUFFERS_22_11_23() {}
3636
}
3737
}

0 commit comments

Comments
 (0)