mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-22 16:29:20 +08:00
Bump to 0.9.2
This commit is contained in:
parent
7c072bf55e
commit
7b32713313
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "rusqlite"
|
||||
version = "0.9.1"
|
||||
version = "0.9.2"
|
||||
authors = ["John Gallagher <jgallagher@bignerdranch.com>"]
|
||||
description = "Ergonomic wrapper for SQLite"
|
||||
repository = "https://github.com/jgallagher/rusqlite"
|
||||
|
@ -1,3 +1,12 @@
|
||||
# Version 0.9.2 (2017-01-22)
|
||||
|
||||
* Bugfix: The `FromSql` impl for `i32` now returns an error instead of
|
||||
truncating if the underlying SQLite value is out of `i32`'s range.
|
||||
* Added `FromSql` and `ToSql` impls for `i8`, `i16`, `u8`, `u16`, and `u32`.
|
||||
`i32` and `i64` already had impls. `u64` is omitted because their range
|
||||
cannot be represented by `i64`, which is the type we use to communicate with
|
||||
SQLite.
|
||||
|
||||
# Version 0.9.1 (2017-01-20)
|
||||
|
||||
* BREAKING CHANGE: `Connection::close()` now returns a `Result<(), (Connection, Error)>` instead
|
||||
|
Loading…
Reference in New Issue
Block a user