Skip to content

Commit

Permalink
0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vaind committed Jan 13, 2020
1 parent bfc679d commit be40e08
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.8.2 (2020-01-13)
------------------
* Fix ARM build incorrectly returning TRUE in obx_supports_bytes_array()

0.8.1 (2019-12-12)
------------------
* Bug fix for obx_box_rel_get_ids(), which did return wrong IDs in some cases (please update!)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ObjectBox C API
Using this C API, you can us ObjectBox as an embedded database in your C/C++ application.
In this embedded mode, it runs within your application process.

**Latest version: 0.8.1** (2019-12-12). See [changelog](CHANGELOG.md) for more details.
**Latest version: 0.8.2** (2020-01-13). See [changelog](CHANGELOG.md) for more details.

Some features
-------------
Expand Down
2 changes: 1 addition & 1 deletion download.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ tty -s || quiet=true

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

version=${1:-0.8.1}
version=${1:-0.8.2}
repoType=${2:-testing}
os=${3:-$(uname)}
arch=${4:-$(uname -m)}
Expand Down
4 changes: 4 additions & 0 deletions doxygen/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
ObjectBox C API Changelog
=========================

0.8.2 (2020-01-13)
------------------
* Fix ARM build incorrectly returning TRUE in obx_supports_bytes_array()

0.8.1 (2019-12-12)
------------------
* Bug fix for obx_box_rel_get_ids(), which did return wrong IDs in some cases (please update!)
Expand Down
2 changes: 1 addition & 1 deletion doxygen/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "ObjectBox C API"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = "0.8.1"
PROJECT_NUMBER = "0.8.2"

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion include/objectbox.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ extern "C" {
/// obx_version() or obx_version_is_at_least().
#define OBX_VERSION_MAJOR 0
#define OBX_VERSION_MINOR 8
#define OBX_VERSION_PATCH 1 // values >= 100 are reserved for dev releases leading to the next minor/major increase
#define OBX_VERSION_PATCH 2 // values >= 100 are reserved for dev releases leading to the next minor/major increase

/// Returns the version of the library as ints. Pointers may be null.
void obx_version(int* major, int* minor, int* patch);
Expand Down
1 change: 1 addition & 0 deletions src-test/plain-c-test-main.c
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ obx_err testPutAndGetFlatObjects(OBX_cursor* cursor) {

int main(int argc, char* args[]) {
printf("Testing libobjectbox version %s, core version: %s\n", obx_version_string(), obx_version_core_string());
printf("Byte array support: %d\n", obx_supports_bytes_array());

OBX_store* store = NULL;
OBX_txn* txn = NULL;
Expand Down

0 comments on commit be40e08

Please sign in to comment.