Skip to content

Commit 203241e

Browse files
authored
FlatBuffers Version 22.10.26 (#7607)
1 parent ac48560 commit 203241e

File tree

159 files changed

+220
-218
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

+220
-218
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ jobs:
2424
publish-pypi:
2525
name: Publish PyPi
2626
runs-on: ubuntu-latest
27+
defaults:
28+
run:
29+
working-directory: ./python
2730
steps:
2831
- uses: actions/checkout@v3
2932
- uses: actions/setup-python@v4
@@ -37,7 +40,6 @@ jobs:
3740
3841
- name: Build
3942
run: |
40-
cd python
4143
python3 setup.py sdist bdist_wheel
4244
4345
- name: Upload to PyPi

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 10)
3-
set(VERSION_PATCH 25)
3+
set(VERSION_PATCH 26)
44
set(VERSION_COMMIT 0)
55

66
find_program(GIT 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.10.25'
3+
s.version = '22.10.26'
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_25()
39+
fun validateVersion() = Constants.FLATBUFFERS_22_10_26()
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.25
2+
version: 22.10.26
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_25() }
9+
static func validateVersion() { FlatBuffersVersion_22_10_26() }
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_25() }
58+
static func validateVersion() { FlatBuffersVersion_22_10_26() }
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 10
143-
#define FLATBUFFERS_VERSION_REVISION 25
143+
#define FLATBUFFERS_VERSION_REVISION 26
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 == 10 &&
13-
FLATBUFFERS_VERSION_REVISION == 25,
13+
FLATBUFFERS_VERSION_REVISION == 26,
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.25</version>
6+
<version>22.10.26</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_25() {}
49+
public static void FLATBUFFERS_22_10_26() {}
5050
}
5151

5252
/// @endcond

0 commit comments

Comments
 (0)