Skip to content

Commit 1703662

Browse files
authored
Flatbuffers Version 23.1.20 (#7794)
* Flatbuffers Version 23.1.20 * Fix warnings * Fix warnings
1 parent 991b39e commit 1703662

File tree

164 files changed

+224
-220
lines changed

Some content is hidden

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

164 files changed

+224
-220
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All major or breaking changes will be documented in this file, as well as any
44
new features that should be highlighted. Minor fixes or improvements are not
55
necessarily listed.
66

7+
## [23.1.20 (Jan 20 2023)](https://github.com/google/flatbuffers/releases/tag/v23.1.20)
8+
9+
* Removed go.mod files after some versioning issues were being report ([#7780](https://github.com/google/flatbuffers/issues/7780)).
10+
711
## [23.1.4 (Jan 4 2023)](https://github.com/google/flatbuffers/releases/tag/v23.1.4)
812

913
* Major release! Just kidding, we are continuing the

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 23)
22
set(VERSION_MINOR 1)
3-
set(VERSION_PATCH 4)
3+
set(VERSION_PATCH 20)
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 = '23.1.4'
3+
s.version = '23.1.20'
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
@@ -48,7 +48,7 @@ class Animal : Table() {
4848
return if(o != 0) bb.getShort(o + bb_pos).toUShort() else 0u
4949
}
5050
companion object {
51-
fun validateVersion() = Constants.FLATBUFFERS_23_1_4()
51+
fun validateVersion() = Constants.FLATBUFFERS_23_1_20()
5252
fun getRootAsAnimal(_bb: ByteBuffer): Animal = getRootAsAnimal(_bb, Animal())
5353
fun getRootAsAnimal(_bb: ByteBuffer, obj: Animal): Animal {
5454
_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: 23.1.4
2+
version: 23.1.20
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_23_1_4() }
9+
static func validateVersion() { FlatBuffersVersion_23_1_20() }
1010
public var __buffer: ByteBuffer! { return _accessor.bb }
1111
private var _accessor: Table
1212

@@ -53,7 +53,7 @@ extension models_HelloReply: Encodable {
5353

5454
public struct models_HelloRequest: FlatBufferObject, Verifiable {
5555

56-
static func validateVersion() { FlatBuffersVersion_23_1_4() }
56+
static func validateVersion() { FlatBuffersVersion_23_1_20() }
5757
public var __buffer: ByteBuffer! { return _accessor.bb }
5858
private var _accessor: Table
5959

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 23
142142
#define FLATBUFFERS_VERSION_MINOR 1
143-
#define FLATBUFFERS_VERSION_REVISION 4
143+
#define FLATBUFFERS_VERSION_REVISION 20
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 == 23 &&
1212
FLATBUFFERS_VERSION_MINOR == 1 &&
13-
FLATBUFFERS_VERSION_REVISION == 4,
13+
FLATBUFFERS_VERSION_REVISION == 20,
1414
"Non-compatible flatbuffers version included");
1515

1616
namespace reflection {

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_23_1_4() {}
49+
public static void FLATBUFFERS_23_1_20() {}
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_23_1_4() {}
35+
public static void FLATBUFFERS_23_1_20() {}
3636
}
3737
}

0 commit comments

Comments
 (0)