Bump to 0.9.0 and add Cargo category and badges

This commit is contained in:
John Gallagher 2017-01-20 15:16:26 -05:00
parent b49e1d1a1c
commit ea519c62c8
2 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "rusqlite"
version = "0.8.0"
version = "0.9.0"
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
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"

View File

@ -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.