mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-23 00:39:20 +08:00
Update Changelog for 0.2.0
This commit is contained in:
parent
8b51435837
commit
e8967388e6
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rusqlite"
|
name = "rusqlite"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
|
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
|
||||||
description = "Ergonomic wrapper for SQLite"
|
description = "Ergonomic wrapper for SQLite"
|
||||||
repository = "https://github.com/jgallagher/rusqlite"
|
repository = "https://github.com/jgallagher/rusqlite"
|
||||||
@ -25,4 +25,4 @@ tempdir = "~0.3.4"
|
|||||||
|
|
||||||
[dependencies.libsqlite3-sys]
|
[dependencies.libsqlite3-sys]
|
||||||
path = "libsqlite3-sys"
|
path = "libsqlite3-sys"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
|
@ -1,3 +1,11 @@
|
|||||||
|
# Version 0.2.0 (2015-07-26)
|
||||||
|
|
||||||
|
* Add `column_names()` to `SqliteStatement`.
|
||||||
|
* By default, include `SQLITE_OPEN_NO_MUTEX` and `SQLITE_OPEN_URI` flags when opening a
|
||||||
|
new conneciton.
|
||||||
|
* Fix generated bindings (e.g., `sqlite3_exec` was wrong).
|
||||||
|
* Use now-generated `sqlite3_destructor_type` to define `SQLITE_STATIC` and `SQLITE_TRANSIENT`.
|
||||||
|
|
||||||
# Version 0.1.0 (2015-05-11)
|
# Version 0.1.0 (2015-05-11)
|
||||||
|
|
||||||
* [breaking-change] Modify `query_row` to return a `Result` instead of unwrapping.
|
* [breaking-change] Modify `query_row` to return a `Result` instead of unwrapping.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "libsqlite3-sys"
|
name = "libsqlite3-sys"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
|
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
|
||||||
repository = "https://github.com/jgallagher/rusqlite"
|
repository = "https://github.com/jgallagher/rusqlite"
|
||||||
description = "Native bindings to the libsqlite3 library"
|
description = "Native bindings to the libsqlite3 library"
|
||||||
|
Loading…
Reference in New Issue
Block a user