Bump version to 0.0.10

This commit is contained in:
John Gallagher 2015-02-23 21:50:10 -05:00
parent e6a1cb8de9
commit baa6f87046
2 changed files with 9 additions and 1 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "rusqlite" name = "rusqlite"
version = "0.0.9" version = "0.0.10"
authors = ["John Gallagher <jgallagher@bignerdranch.com>"] authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
description = "Ergonomic wrapper for SQLite" description = "Ergonomic wrapper for SQLite"
homepage = "https://github.com/jgallagher/rusqlite" homepage = "https://github.com/jgallagher/rusqlite"

View File

@ -1,3 +1,11 @@
# Version 0.0.10 (2015-02-23)
* BREAKING CHANGE: `open` now expects a `Path` rather than a `str`. There is a separate
`open_in_memory` constructor for opening in-memory databases.
* Added the ability to load SQLite extensions. This is behind the `load_extension` Cargo feature,
because not all builds of sqlite3 include this ability. Notably the default libsqlite3 that
ships with OS X 10.10 does not support extensions.
# Version 0.0.9 (2015-02-13) # Version 0.0.9 (2015-02-13)
* Updates to track latest rustc changes. * Updates to track latest rustc changes.