mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-23 00:39:20 +08:00
Bump version to 0.5.0
This commit is contained in:
parent
51a542c0f7
commit
e71104e6c3
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "rusqlite"
|
name = "rusqlite"
|
||||||
version = "0.4.0"
|
version = "0.5.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"
|
||||||
@ -27,7 +27,7 @@ lazy_static = "~0.1"
|
|||||||
|
|
||||||
[dependencies.libsqlite3-sys]
|
[dependencies.libsqlite3-sys]
|
||||||
path = "libsqlite3-sys"
|
path = "libsqlite3-sys"
|
||||||
version = "0.2.0"
|
version = "0.3.0"
|
||||||
|
|
||||||
[[test]]
|
[[test]]
|
||||||
name = "config_log"
|
name = "config_log"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Version UPCOMING (TBD)
|
# Version 0.5.0 (2015-12-08)
|
||||||
|
|
||||||
* Adds `trace` feature that allows the use of SQLite's logging, tracing, and profiling hooks.
|
* Adds `trace` feature that allows the use of SQLite's logging, tracing, and profiling hooks.
|
||||||
* Slight change to the closure types passed to `query_map` and `query_and_then`:
|
* Slight change to the closure types passed to `query_map` and `query_and_then`:
|
||||||
@ -7,6 +7,7 @@
|
|||||||
* When building, the environment variable `SQLITE3_LIB_DIR` now takes precedence over pkg-config.
|
* When building, the environment variable `SQLITE3_LIB_DIR` now takes precedence over pkg-config.
|
||||||
* If `pkg-config` is not available, we will try to find `libsqlite3` in `/usr/lib`.
|
* If `pkg-config` is not available, we will try to find `libsqlite3` in `/usr/lib`.
|
||||||
* Add more documentation for failure modes of functions that return `SqliteResult`s.
|
* Add more documentation for failure modes of functions that return `SqliteResult`s.
|
||||||
|
* Updates `libc` dependency to 0.2, fixing builds on ARM for Rust 1.6 or newer.
|
||||||
|
|
||||||
# Version 0.4.0 (2015-11-03)
|
# Version 0.4.0 (2015-11-03)
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "libsqlite3-sys"
|
name = "libsqlite3-sys"
|
||||||
version = "0.2.0"
|
version = "0.3.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