Prepare release 0.25.0 (#930)

rusqlite 0.25.0
libsqlite3-sys 0.22.0
Also fix missing README for libsqlite3-sys crate
And fix a typo.
This commit is contained in:
gwenn
2021-04-03 20:07:53 +02:00
committed by GitHub
parent f6a69bede9
commit 517ef2beae
5 changed files with 8 additions and 7 deletions

View File

@@ -130,7 +130,7 @@ impl InnerConnection {
let conn = Connection::from_handle(arg2).unwrap();
let collation_name = {
let c_slice = CStr::from_ptr(arg3).to_bytes();
str::from_utf8(c_slice).expect("illegal coallation sequence name")
str::from_utf8(c_slice).expect("illegal collation sequence name")
};
callback(&conn, collation_name)
});