Multiple changes.

- Raise an error if invalid options are passed to the constructor.
- Bugfix: Ensure drop() only removes the specified collection.
- Fix initializer double memory allocation.
- Fix key/data object allocation: make garbage collection safe.
- Move common macros to the global header file.

FossilOrigin-Name: 98d3016bd25921dead39d9c5474712766b56519d575bc8cd960932b3fbc16b69
This commit is contained in:
Mahlon E. Smith 2021-06-28 23:39:46 +00:00
parent b7e515d51e
commit e9b476a4d7
10 changed files with 605 additions and 517 deletions

View file

@ -1,5 +1,14 @@
# Release History for MDBX
---
## v0.3.1 [2021-05-16] Mahlon E. Smith <mahlon@martini.nu>
Bugfix:
- #drop could potentially remove unintended data. Yanked version
v0.3.0.
---
## v0.3.0 [2021-04-09] Mahlon E. Smith <mahlon@martini.nu>