Skip to content

Commit 7827c03

Browse files
committed
0.9.1
1 parent a7dc1ff commit 7827c03

File tree

9 files changed

+290
-114
lines changed

9 files changed

+290
-114
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
0.9.1 (2020-06-23)
2+
------------------
3+
* C++ interface improvements:
4+
* "Box::getOptional()" overloads returning std::optional
5+
* "Box::put()" overloads taking vectors of std::unique_ptr and std::optional
6+
* Query methods: find(), findIds(), count(), remove(), ...
7+
* Ensure double-free can't happen (added explicit copy & move constructors)
8+
* Fixed Windows exported symbols - recently added APIs were missing
9+
* New "obx_cursor_put_object4()" overload taking PutMode as an argument
10+
* Make *_close() functions consistently accept nullptr
11+
112
0.9.0 (2020-06-18)
213
------------------
314
* C++ API added: see include/objectbox-cpp.h

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ObjectBox C/C++ API
44
These are the C and C++ APIs to run ObjectBox as an embedded database in your C/C++ application.
55
In this embedded mode, it runs within your application process.
66

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

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

download.sh

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

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

42-
version=${1:-0.9.0}
42+
version=${1:-0.9.1}
4343
repoType=${2:-testing}
4444
os=${3:-$(uname)}
4545
arch=${4:-$(uname -m)}

doxygen/Changelog.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,23 @@
33
ObjectBox C API Changelog
44
=========================
55

6+
0.9.1 (2020-06-23)
7+
------------------
8+
* C++ interface improvements:
9+
* "Box::getOptional()" overloads returning std::optional
10+
* "Box::put()" overloads taking vectors of std::unique_ptr and std::optional
11+
* Query methods: find(), findIds(), count(), remove(), ...
12+
* Ensure double-free can't happen (added explicit copy & move constructors)
13+
* Fixed Windows exported symbols - recently added APIs were missing
14+
* New "obx_cursor_put_object4()"
15+
* Make *_close() functions consistently accept nullptr
16+
617
0.9.0 (2020-06-18)
718
------------------
8-
* Details are coming soon...
19+
* C++ API added: see include/objectbox-cpp.h
20+
* Initial time series support (ObjectBox TS only)
21+
* New "put object" functions that e.g. handle ID assignment
22+
* Several internal improvements, e.g. query links are resolved faster
923

1024
0.8.2 (2020-01-13)
1125
------------------

doxygen/Doxyfile

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

41-
PROJECT_NUMBER = "0.9.0"
41+
PROJECT_NUMBER = "0.9.1"
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

0 commit comments

Comments
 (0)