Skip to content

Commit 44acb63

Browse files
committed
5.0.0
1 parent 0dadd9b commit 44acb63

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
ObjectBox Generator changelog
22
=============================
33

4-
## 5.0.0-rc (2025-11-25)
4+
## 5.0.0 (2025-11-27)
55

66
C/C++
77

88
* Support for external name and type annotations
9-
* Add new vector distance type 'Geo'
10-
* Bump CMake min version to 3.5 for compatibility with CMake 4.x
9+
* Add the new vector distance type "Geo"
10+
* Bump the CMake min version to 3.5 for compatibility with CMake 4.x
1111

1212
Go
1313

@@ -17,4 +17,4 @@ TypeScript/JavaScript
1717

1818
* Releasing a preview of JavaScript code generation, which can be used with the ObjectBox TS/JS library
1919

20-
Older releases are available at https://github.com/objectbox/objectbox-generator/releases.
20+
Older releases are available at https://github.com/objectbox/objectbox-generator/releases.

README.md

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

66
# ObjectBox Generator
77

8-
Current version: 5.0.0-rc
8+
Current version: 5.0.0
99

1010
ObjectBox is a superfast cross-platform object-oriented database.
1111
ObjectBox Generator produces code for the ObjectBox SDKs of the following programing languages:

cmake/FindObjectBoxGenerator.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Generated headers and sources are written to the sub-directories ``ObjectBoxGene
128128
option(OBX_GENERATOR_ALLOW_FETCH "Opt-in automatic download and prepare for local execution" ON)
129129

130130
# Version to download (must be a GitHub release with attached binaries); also change Version in generator.go
131-
set(ObjectBoxGenerator_FETCH_VERSION 5.0.0-rc2)
131+
set(ObjectBoxGenerator_FETCH_VERSION 5.0.0)
132132
# Using the version in the directories used for the generator executable to cleanly support multiple versions.
133133
# This is e.g. relevant when updating to ensure fetching the new version.
134134
set(ObjectBoxGenerator_FETCH_DIR ${CMAKE_BINARY_DIR}/ObjectBoxGenerator-download/${ObjectBoxGenerator_FETCH_VERSION}/fetch)

internal/generator/generator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import (
3535
)
3636

3737
// Version specifies the current generator version.
38-
const Version = "5.0.0-rc2"
38+
const Version = "5.0.0"
3939

4040
// VersionId specifies the current generator version identifier.
4141
// It is used to validate generated code compatibility and is increased when there are changes in the generated code.

0 commit comments

Comments
 (0)