version 2.3
Fixes:
- Updated sqlite version to 3.12.0
- Added forgotten operator
<<overload #46 - Added support for
nullptranduniqueptr<T>and deprecatedboost::optional. #52 - Fixed exceptions terminating the program #53
You can find more info in the updated README file.
Breaking changes:
- prepared statements are not
uniqueptr<database_binder>anymore, they are plaindatabase_binderinstances.
so instead ofprepared_statment->reset()you should writeprepared_statement.reset(). boost_optional<T>is deprecated, we will replace this withstd::experimental::optional<T>when enough compilers support it.