All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- updated: To latest rusqlite version (
0.31
). - added: Reexported all names from
rusqlite
crate.
- updated: To latest rusqlite version (
0.30
). - added: Added
params
macro export fromrusqlite
crate. - breaking:
Connection::call
now takestokio_rusqlite::Result
instead ofrusqlite::Result
. - added: Added
Error::Other
variant for application specific errors. - added: Added
Connection::call_unwrap
method.
- added: Added
Connection::close
method. - added: Added
tokio_rusqlite::Error
type. - breaking: All
Connection
methods now returnResult<_, tokio_rusqlite::Error>
. - updated: To latest rusqlite version (
0.29
).
- updated: To latest rusqlite version (
0.28
).
- changed: Now using unbounded
crossbeam-channel
instead of boundedstd::sync::mpsc
channel internally. - changed: Channel send errors in background database thread are now ignored instead of panicking.
- Initial release.