diff --git a/Cargo.toml b/Cargo.toml index d112f86..3555180 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rusqlite" -version = "0.5.0" +version = "0.6.0" authors = ["John Gallagher "] description = "Ergonomic wrapper for SQLite" repository = "https://github.com/jgallagher/rusqlite" @@ -31,7 +31,7 @@ regex = "~0.1.41" [dependencies.libsqlite3-sys] path = "libsqlite3-sys" -version = "0.3.0" +version = "0.4.0" [[test]] name = "config_log" diff --git a/Changelog.md b/Changelog.md index 490a62c..157a3fc 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,4 +1,4 @@ -# Version UPCOMING (TBD) +# Version 0.6.0 (2015-12-17) * BREAKING CHANGE: `SqliteError` is now an enum instead of a struct. Previously, we were (ab)using the error code and message to send back both underlying SQLite errors and errors that occurred diff --git a/libsqlite3-sys/Cargo.toml b/libsqlite3-sys/Cargo.toml index 6be5973..b199cfc 100644 --- a/libsqlite3-sys/Cargo.toml +++ b/libsqlite3-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libsqlite3-sys" -version = "0.3.0" +version = "0.4.0" authors = ["John Gallagher "] repository = "https://github.com/jgallagher/rusqlite" description = "Native bindings to the libsqlite3 library"