mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-22 16:29:20 +08:00
Bump version to 0.3.0.
Updates Changelog and CONTRIBUTORS for changes in this version.
This commit is contained in:
parent
d23667870e
commit
c3bc8b594a
@ -5,3 +5,5 @@ rusqlite contributors (sorted alphabetically)
|
||||
* [Marcus Klaas de Vries](https://github.com/marcusklaas)
|
||||
* [gwenn](https://github.com/gwenn)
|
||||
* [Jimmy Lu](https://github.com/Yuhta)
|
||||
* [Huon Wilson](https://github.com/huonw)
|
||||
* [Patrick Fernie](https://github.com/pfernie)
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "rusqlite"
|
||||
version = "0.2.0"
|
||||
version = "0.3.0"
|
||||
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
|
||||
description = "Ergonomic wrapper for SQLite"
|
||||
repository = "https://github.com/jgallagher/rusqlite"
|
||||
|
11
Changelog.md
11
Changelog.md
@ -1,3 +1,14 @@
|
||||
# Version 0.3.0 (2015-09-21)
|
||||
|
||||
* Removes `get_opt`. Use `get_checked` instead.
|
||||
* Add `query_row_and_then` and `query_and_then` convenience functions. These are analogous to
|
||||
`query_row` and `query_map` but allow functions that can fail by returning `Result`s.
|
||||
* Relax uses of `P: AsRef<...>` from `&P` to `P`.
|
||||
* Add additional error check for calling `execute` when `query` was intended.
|
||||
* Improve debug formatting of `SqliteStatement` and `SqliteConnection`.
|
||||
* Changes documentation of `get_checked` to correctly indicate that it returns errors (not panics)
|
||||
when given invalid types or column indices.
|
||||
|
||||
# Version 0.2.0 (2015-07-26)
|
||||
|
||||
* Add `column_names()` to `SqliteStatement`.
|
||||
|
Loading…
Reference in New Issue
Block a user