From baa6f87046a16bff5b250993f176cff8655ff57f Mon Sep 17 00:00:00 2001 From: John Gallagher Date: Mon, 23 Feb 2015 21:50:10 -0500 Subject: [PATCH] Bump version to 0.0.10 --- Cargo.toml | 2 +- Changelog.md | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0d43f1a..d813fd0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rusqlite" -version = "0.0.9" +version = "0.0.10" authors = ["John Gallagher "] description = "Ergonomic wrapper for SQLite" homepage = "https://github.com/jgallagher/rusqlite" diff --git a/Changelog.md b/Changelog.md index 3ee1ed3..e9ef16d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -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) * Updates to track latest rustc changes.