@@ -18,7 +18,7 @@ box.put({.text = "Buy milk"});
1818
1919See [ObjectBox C and C++ docs](https://cpp.objectbox.io/) for API details.
2020
21- **Latest version: 4.0.2 ** (2024-10-15 ).
21+ **Latest version: 4.0.3 ** (2024-11-04 ).
2222See [changelog](CHANGELOG.md) for more details.
2323
2424## Table of Contents:
@@ -27,8 +27,8 @@ See [changelog](CHANGELOG.md) for more details.
2727- [C++ API](#c-api)
2828- [Examples](#examples)
2929- [Documentation](#documentation)
30- - [Current state / Changelog](#current-state--changelog )
31- - [Supported platforms](#supported-platforms)
30+ - [Current state / Changelog](#changelogupdating )
31+ - [Supported platforms](#supported-platforms)
3232- [C API as the Foundation for Higher Languages](#c-api-as-the-foundation-for-higher-languages)
3333- [Other languages/bindings](#other-languagesbindings)
3434- [How can I help ObjectBox?](#how-can-i-help-objectbox)
@@ -99,25 +99,26 @@ Documentation
9999* [include/objectbox.hpp](include/objectbox.hpp) - C++ API header file contains docs as code comments
100100* [C and C++ API reference docs](https://objectbox.io/docfiles/c/current/) - online HTML docs (Doxygen)
101101
102- Current state / Changelog
103- -------------------------
104- The C API is a thin wrapper around a robust DB core, which is version 3.x and already used on millions of devices.
105-
106- **Beta notice:** the C API will become stable starting from version 1.0.
107- Until then, API improvements may result in breaking changes. For example, functions may still be renamed.
102+ Changelog/Updating
103+ ------------------
104+ Please refer to the **[Changelog](CHANGELOG.md)** for the latest updates and changes.
105+ We are (mostly) following [Semantic Versioning](https://semver.org/).
108106
109- **[Changelog](CHANGELOG.md):** If you update from a previous version, please check the [changelog](CHANGELOG.md).
110- Besides new features, there may be breaking changes requiring modifications to your code.
107+ If you update from a previous version, please also check the changelog.
111108
112- ### Supported platforms:
109+ Supported platforms
110+ -------------------
113111* Linux 64-bit
114112* Linux ARMv6hf (e.g. Raspberry PI Zero)
115113* Linux ARMv7hf (e.g. Raspberry PI 3/4)
116- * Linux ARMv8/AArch64 (e.g. Raspberry PI 3/4 with a 64 bit OS like Ubuntu)
117- * MacOS 64-bit
114+ * Linux ARMv8/AArch64 (e.g. Raspberry PI 3/4 with a 64- bit OS like Ubuntu)
115+ * macOS 64-bit
118116* Windows 32-bit
119117* Windows 64-bit
120118
119+ Note that e.g. our Android SDK (part of [another repo](https://github.com/objectbox/objectbox-java))
120+ also exposes the C API, so you can use ObjectBox in your Android NDK projects.
121+
121122C API as the Foundation for Higher Languages
122123--------------------------------------------
123124The plain C API (without the Generator) also serves as a basis for ObjectBox bindings in higher languages.
0 commit comments