From ea519c62c8612c7431080ea8cc2293308da2daa5 Mon Sep 17 00:00:00 2001 From: John Gallagher Date: Fri, 20 Jan 2017 15:16:26 -0500 Subject: [PATCH] Bump to 0.9.0 and add Cargo category and badges --- Cargo.toml | 7 ++++++- Changelog.md | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 42531c9..8595ba8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rusqlite" -version = "0.8.0" +version = "0.9.0" authors = ["John Gallagher "] description = "Ergonomic wrapper for SQLite" repository = "https://github.com/jgallagher/rusqlite" @@ -8,6 +8,11 @@ documentation = "http://jgallagher.github.io/rusqlite/rusqlite/index.html" readme = "README.md" keywords = ["sqlite", "database", "ffi"] license = "MIT" +categories = ["database"] + +[badges] +travis-ci = { repository = "jgallagher/rusqlite" } +appveyor = { repository = "jgallagher/rusqlite" } [lib] name = "rusqlite" diff --git a/Changelog.md b/Changelog.md index 35a2781..f5df33a 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,4 +1,4 @@ -# Version UPCOMING (TBD) +# Version 0.9.0 (2017-01-20) * BREAKING CHANGE: `Connection::close()` now returns a `Result<(), (Connection, Error)>` instead of a `Result<(), Error>` so callers get the still-open connection back on failure.