Add functions feature to travis and Changelog.

This commit is contained in:
John Gallagher 2015-12-11 16:28:46 -05:00
parent 3bcde498bd
commit caf1e95e31
2 changed files with 5 additions and 2 deletions

View File

@ -11,8 +11,9 @@ script:
- cargo test --features backup
- cargo test --features load_extension
- cargo test --features trace
- cargo test --features "backup load_extension trace"
- cargo doc --no-deps --features "backup load_extension trace"
- cargo test --features functions
- cargo test --features "backup functions load_extension trace"
- cargo doc --no-deps --features "backup functions load_extension trace"
after_success: |
[ $TRAVIS_BRANCH = master ] &&

View File

@ -1,6 +1,8 @@
# Version UPCOMING (TBD)
* Adds `backup` feature that exposes SQLite's online backup API.
* Adds `functions` feature that allows user-defined scalar functions to be added to
open `SqliteConnection`s.
# Version 0.5.0 (2015-12-08)