Update Changelog and Cargo.toml to 0.3.1

This commit is contained in:
John Gallagher 2015-09-22 10:18:26 -07:00
parent b1350c4c14
commit b41275cbc8
2 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "rusqlite"
version = "0.3.0"
version = "0.3.1"
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
description = "Ergonomic wrapper for SQLite"
repository = "https://github.com/jgallagher/rusqlite"

View File

@ -1,3 +1,8 @@
# Version 0.3.1 (2015-09-22)
* Reset underlying SQLite statements as soon as possible after executing, as recommended by
http://www.sqlite.org/cvstrac/wiki?p=ScrollingCursor.
# Version 0.3.0 (2015-09-21)
* Removes `get_opt`. Use `get_checked` instead.