rusqlite/Changelog.md

75 lines
1.9 KiB
Markdown
Raw Normal View History

2015-04-03 08:32:11 -05:00
# Version 0.0.16
* Updates to track rustc nightly.
2015-03-29 12:52:05 -04:00
# Version 0.0.15
* Make SqliteConnection `Send`.
# Version 0.0.14
* Remove unneeded features (also involves switching to `libc` crate).
2015-03-26 15:48:29 -04:00
# Version 0.0.13 (2015-03-26)
* Updates to track rustc nightly.
2015-03-24 12:13:19 -04:00
# Version 0.0.12 (2015-03-24)
* Updates to track rustc stabilization.
2015-03-12 16:41:37 -04:00
# Version 0.0.11 (2015-03-12)
* Reexport `sqlite3_stmt` from `libsqlite3-sys` for easier `impl`-ing of `ToSql` and `FromSql`.
* Updates to track latest rustc changes.
* Update dependency versions.
2015-02-23 21:50:10 -05:00
# Version 0.0.10 (2015-02-23)
* BREAKING CHANGE: `open` now expects a `Path` rather than a `str`. There is a separate
`open_in_memory` constructor for opening in-memory databases.
* Added the ability to load SQLite extensions. This is behind the `load_extension` Cargo feature,
because not all builds of sqlite3 include this ability. Notably the default libsqlite3 that
ships with OS X 10.10 does not support extensions.
2015-02-13 15:49:16 -05:00
# Version 0.0.9 (2015-02-13)
* Updates to track latest rustc changes.
* Implement standard `Error` trait for `SqliteError`.
2015-02-04 10:54:04 -05:00
# Version 0.0.8 (2015-02-04)
* Updates to track latest rustc changes.
2015-01-20 10:04:27 -05:00
# Version 0.0.7 (2015-01-20)
* Use external bitflags from crates.io.
# Version 0.0.6 (2015-01-10)
2015-01-10 21:21:08 -06:00
* Updates to track latest rustc changes (1.0.0-alpha).
* Add `query_row_safe`, a `SqliteResult`-returning variant of `query_row`.
2015-01-20 10:04:27 -05:00
# Version 0.0.5 (2015-01-07)
2015-01-07 09:18:49 -05:00
* Updates to track latest rustc changes (closure syntax).
2015-01-07 14:16:51 -05:00
* Updates to track latest rust stdlib changes (`std::c_str` -> `std::ffi`).
2015-01-07 09:18:49 -05:00
2015-01-20 10:04:27 -05:00
# Version 0.0.4 (2015-01-05)
2015-01-05 11:21:47 -05:00
* Updates to track latest rustc changes.
2014-12-23 12:27:09 -05:00
# Version 0.0.3 (2014-12-23)
* Updates to track latest rustc changes.
* Add call to `sqlite3_busy_timeout`.
2014-12-04 10:48:05 -05:00
# Version 0.0.2 (2014-12-04)
* Remove use of now-deprecated `std::vec::raw::from_buf`.
* Update to latest version of `time` crate.
# Version 0.0.1 (2014-11-21)
* Initial release