Skip to content

Commit

Permalink
0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
greenrobot committed Jun 23, 2020
1 parent a7dc1ff commit 7827c03
Show file tree
Hide file tree
Showing 9 changed files with 290 additions and 114 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
0.9.1 (2020-06-23)
------------------
* C++ interface improvements:
* "Box::getOptional()" overloads returning std::optional
* "Box::put()" overloads taking vectors of std::unique_ptr and std::optional
* Query methods: find(), findIds(), count(), remove(), ...
* Ensure double-free can't happen (added explicit copy & move constructors)
* Fixed Windows exported symbols - recently added APIs were missing
* New "obx_cursor_put_object4()" overload taking PutMode as an argument
* Make *_close() functions consistently accept nullptr

0.9.0 (2020-06-18)
------------------
* C++ API added: see include/objectbox-cpp.h
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/C++ API
These are the C and C++ APIs to run ObjectBox as an embedded database in your C/C++ application.
In this embedded mode, it runs within your application process.

**Latest version: 0.9.0** (2020-06-16). See [changelog](CHANGELOG.md) for more details.
**Latest version: 0.9.1** (2020-06-23). See [changelog](CHANGELOG.md) for more details.

**Related project:** [ObjectBox Generator](https://github.com/objectbox/objectbox-generator) to help with C/C++ binding code.

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.9.0}
version=${1:-0.9.1}
repoType=${2:-testing}
os=${3:-$(uname)}
arch=${4:-$(uname -m)}
Expand Down
16 changes: 15 additions & 1 deletion doxygen/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,23 @@
ObjectBox C API Changelog
=========================

0.9.1 (2020-06-23)
------------------
* C++ interface improvements:
* "Box::getOptional()" overloads returning std::optional
* "Box::put()" overloads taking vectors of std::unique_ptr and std::optional
* Query methods: find(), findIds(), count(), remove(), ...
* Ensure double-free can't happen (added explicit copy & move constructors)
* Fixed Windows exported symbols - recently added APIs were missing
* New "obx_cursor_put_object4()"
* Make *_close() functions consistently accept nullptr

0.9.0 (2020-06-18)
------------------
* Details are coming soon...
* C++ API added: see include/objectbox-cpp.h
* Initial time series support (ObjectBox TS only)
* New "put object" functions that e.g. handle ID assignment
* Several internal improvements, e.g. query links are resolved faster

0.8.2 (2020-01-13)
------------------
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.9.0"
PROJECT_NUMBER = "0.9.1"

# 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
Loading

0 comments on commit 7827c03

Please sign in to comment.