Update CHANGELOG with recent merge requests

This commit is contained in:
Sébastien Rombauts 2016-06-27 08:58:54 +02:00
parent d98cc930cc
commit ef26cf09a1
3 changed files with 3 additions and 3 deletions

View File

@ -82,4 +82,5 @@ Version 1.3.1 - February 10 2016
Version 1.3.x ?
Update SQLite3 from 3.10.2 ot latest 3.12.2 (2016-04-18)
Better exception messages when statements fail #84
Variadic templates for bind() (C++14) #85

View File

@ -23,7 +23,6 @@ Missing unit tests in v1.0.0:
Advanced missing features:
- #39: SAVEPOINT https://www.sqlite.org/lang_savepoint.html
- backup support to/from file/:memory:
- Add optional usage of experimental sqlite3_trace() function to enable statistics
- Agregate ?

View File

@ -6,7 +6,7 @@ mkdir -p build
cd build
# Generate a Makefile for GCC (or Clang, depanding on CC/CXX envvar)
cmake -DSQLITECPP_BUILD_EXAMPLES=ON -DSQLITECPP_BUILD_TESTS=ON ..
cmake -DCMAKE_BUILD_TYPE=Debug -DSQLITECPP_USE_GCOV=OFF -DSQLITECPP_BUILD_EXAMPLES=ON -DSQLITECPP_BUILD_TESTS=ON ..
# Build (ie 'make')
cmake --build .