Skip to content

Commit c3d4473

Browse files
committed
Preparing 5.0.0 release
1 parent a7ecdb0 commit c3d4473

File tree

10 files changed

+13
-15
lines changed

10 files changed

+13
-15
lines changed

CHANGELOG.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ObjectBox C and C++ API Changelog
22
=================================
33

4-
5.0.0-rc3 (2025-11-26)
4+
5.0.0 (2025-11-27)
55
----------------------
66

77
### User-Specific Data Sync
@@ -13,11 +13,10 @@ ObjectBox C and C++ API Changelog
1313
### New supported platform: Windows ARM64
1414

1515
* Besides x86 and x64, ObjectBox for Windows now also supports ARM64
16-
* Use git tag `v5.0.0-rc2` for CMake (the arm64 libs were added to the 5.0.0-rc release in a later commit)
1716

1817
### Sync
1918

20-
* Sync clients may now provide certificate locations for SSL(TLS) connections
19+
* Sync clients may now provide certificate locations for SSL (TLS) connections
2120

2221
### Fixes
2322

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ else ()
5555

5656
function(defineObjectBoxLib VARIANT)
5757
# Configuration updated for each release
58-
set(DL_VERSION 5.0.0-rc3)
58+
set(DL_VERSION 5.0.0)
5959

6060
# Platform detection and other setup
6161
set(DL_URL https://github.com/objectbox/objectbox-c/releases/download)
@@ -112,7 +112,7 @@ else ()
112112
if(NOT DEFINED ObjectBoxGenerator_CMAKE_VERSION OR ObjectBoxGenerator_CMAKE_VERSION STREQUAL "")
113113
# The default version is a specific version that "matches" the ObjectBox library version of this repo.
114114
# Nevertheless, it's often possible to use a newer Generator version as breaking changes are infrequent.
115-
set(ObjectBoxGenerator_CMAKE_VERSION "v5.0.0-rc2")
115+
set(ObjectBoxGenerator_CMAKE_VERSION "v5.0.0")
116116
endif ()
117117
set(OBX_GEN_DL_URL https://raw.githubusercontent.com/objectbox/objectbox-generator/${ObjectBoxGenerator_CMAKE_VERSION}/cmake/FindObjectBoxGenerator.cmake)
118118

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ box.put({.text = "Buy milk"});
1818
1919
See [ObjectBox C and C++ docs](https://cpp.objectbox.io/) for API details.
2020
21-
**Latest version: 5.0.0-rc3** (2025-11-26).
21+
**Latest version: 5.0.0** (2025-11-27).
2222
See [changelog](CHANGELOG.md) for more details.
2323
2424
## Table of Contents:

download.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ tty -s || quiet=true
4444

4545
# Note: optional arguments like "--quiet" shifts argument positions in the case block above
4646

47-
version=${1:-5.0.0-rc3}
47+
version=${1:-5.0.0}
4848
os=${2:-$(uname)}
4949
arch=${3:-$(uname -m)}
5050
echo "Base config: OS ${os} and architecture ${arch}"

doxygen/Changelog.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ObjectBox C and C++ API Changelog
44
=================================
55

6-
5.0.0-rc3 (2025-11-26)
6+
5.0.0 (2025-11-27)
77
----------------------
88

99
### User-Specific Data Sync
@@ -15,11 +15,10 @@ ObjectBox C and C++ API Changelog
1515
### New supported platform: Windows ARM64
1616

1717
* Besides x86 and x64, ObjectBox for Windows now also supports ARM64
18-
* Use git tag `v5.0.0-rc2` for CMake (the arm64 libs were added to the 5.0.0-rc release in a later commit)
1918

2019
### Sync
2120

22-
* Sync clients may now provide certificate locations for SSL(TLS) connections
21+
* Sync clients may now provide certificate locations for SSL (TLS) connections
2322

2423
### Fixes
2524

doxygen/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "ObjectBox C and C++ API"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = "5.0.0-rc3"
41+
PROJECT_NUMBER = "5.0.0"
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

examples/c-tasks-lowlevel/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if (NOT TARGET objectbox) # Using "if" in case a (potential) parent project alre
1717
FetchContent_Declare(
1818
objectbox
1919
GIT_REPOSITORY https://github.com/objectbox/objectbox-c.git
20-
GIT_TAG v5.0.0-rc3 # For latest versions, check https://github.com/objectbox/objectbox-c/releases
20+
GIT_TAG v5.0.0 # For latest versions, check https://github.com/objectbox/objectbox-c/releases
2121
)
2222
FetchContent_MakeAvailable(objectbox)
2323

examples/c-tasks/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if (NOT TARGET objectbox) # Using "if" in case a (potential) parent project alre
1717
FetchContent_Declare(
1818
objectbox
1919
GIT_REPOSITORY https://github.com/objectbox/objectbox-c.git
20-
GIT_TAG v5.0.0-rc3 # For latest versions, check https://github.com/objectbox/objectbox-c/releases
20+
GIT_TAG v5.0.0 # For latest versions, check https://github.com/objectbox/objectbox-c/releases
2121
)
2222
FetchContent_MakeAvailable(objectbox)
2323

examples/tasks/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if (NOT TARGET objectbox) # Using "if" in case a (potential) parent project alre
1717
FetchContent_Declare(
1818
objectbox
1919
GIT_REPOSITORY https://github.com/objectbox/objectbox-c.git
20-
GIT_TAG v5.0.0-rc3 # For latest versions, check https://github.com/objectbox/objectbox-c/releases
20+
GIT_TAG v5.0.0 # For latest versions, check https://github.com/objectbox/objectbox-c/releases
2121
)
2222
FetchContent_MakeAvailable(objectbox)
2323

examples/vectorsearch-cities/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if (NOT TARGET objectbox) # Using "if" in case a (potential) parent project alre
1717
FetchContent_Declare(
1818
objectbox
1919
GIT_REPOSITORY https://github.com/objectbox/objectbox-c.git
20-
GIT_TAG v5.0.0-rc4 # For latest versions, check https://github.com/objectbox/objectbox-c/releases
20+
GIT_TAG v5.0.0 # For latest versions, check https://github.com/objectbox/objectbox-c/releases
2121
)
2222
FetchContent_MakeAvailable(objectbox)
2323

0 commit comments

Comments
 (0)