Bump version to 0.0.7

This commit is contained in:
John Gallagher 2015-01-20 10:04:27 -05:00
parent 1f245df165
commit 88d0566010
2 changed files with 8 additions and 4 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "rusqlite" name = "rusqlite"
version = "0.0.6" version = "0.0.7"
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,14 +1,18 @@
# Version 0.0.6 (2014-01-10) # Version 0.0.7 (2015-01-20)
* Use external bitflags from crates.io.
# Version 0.0.6 (2015-01-10)
* Updates to track latest rustc changes (1.0.0-alpha). * Updates to track latest rustc changes (1.0.0-alpha).
* Add `query_row_safe`, a `SqliteResult`-returning variant of `query_row`. * Add `query_row_safe`, a `SqliteResult`-returning variant of `query_row`.
# Version 0.0.5 (2014-01-07) # Version 0.0.5 (2015-01-07)
* Updates to track latest rustc changes (closure syntax). * Updates to track latest rustc changes (closure syntax).
* Updates to track latest rust stdlib changes (`std::c_str` -> `std::ffi`). * Updates to track latest rust stdlib changes (`std::c_str` -> `std::ffi`).
# Version 0.0.4 (2014-01-05) # Version 0.0.4 (2015-01-05)
* Updates to track latest rustc changes. * Updates to track latest rustc changes.