From b41275cbc84bc19c9453cf723e05e3e18a70f144 Mon Sep 17 00:00:00 2001 From: John Gallagher Date: Tue, 22 Sep 2015 10:18:26 -0700 Subject: [PATCH] Update Changelog and Cargo.toml to 0.3.1 --- Cargo.toml | 2 +- Changelog.md | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0fbf0ee..cd70b17 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rusqlite" -version = "0.3.0" +version = "0.3.1" authors = ["John Gallagher "] description = "Ergonomic wrapper for SQLite" repository = "https://github.com/jgallagher/rusqlite" diff --git a/Changelog.md b/Changelog.md index 6ce64d3..624b076 100644 --- a/Changelog.md +++ b/Changelog.md @@ -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.