Skip to content

Commit 0fd224a

Browse files
committed
v0.33.0
1 parent c6e0bb7 commit 0fd224a

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### v0.33.0
2+
- (Routine Maintenance) Updated `rusqlite` from `0.32` to `0.33`.
3+
- This is a *breaking change,* requiring you to upgrade your `rusqlite` to match - trying to link against two different copies of `libsqlite3` will cause a compile fail.
4+
- The version number for Exemplar now matches the supported `rusqlite` version.
5+
16
### v0.11.0
27
- (Routine Maintenance) Updated `rusqlite` from `0.31` to `0.32`.
38
- This is a *breaking change,* requiring you to upgrade your `rusqlite` to match - trying to link against two different copies of `libsqlite3` will cause a compile fail.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ members = [
77
]
88

99
[workspace.package]
10-
version = "0.11.0"
10+
version = "0.33.0"
1111
authors = ["Colonial"]
1212
edition = "2021"
1313
license = "MIT OR Apache-2.0"

exemplar/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ rustdoc-args = ["--cfg", "docsrs"]
1616

1717
[dependencies]
1818
exemplar_proc_macro = { version = "0.7.1" }
19-
rusqlite = "0.32"
19+
rusqlite = "0.33"
2020

2121
[dev-dependencies]
2222
anyhow = "1.0.75"

exemplar/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ pub enum Parameter<'a> {
322322
Boxed(Box<dyn ToSql + 'a>)
323323
}
324324

325-
impl<'a> ToSql for Parameter<'a> {
325+
impl ToSql for Parameter<'_> {
326326
fn to_sql(&self) -> Result<ToSqlOutput<'_>> {
327327
match self {
328328
Self::Borrowed(param) => param.to_sql(),

exemplar_proc_macro/src/util.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pub struct Derivee<'a> {
77
pub schema: Option<String>,
88
}
99

10-
impl<'a> Derivee<'a> {
10+
impl Derivee<'_> {
1111
pub fn field_idents(&self) -> impl Iterator<Item = &Ident> {
1212
self
1313
.fields

0 commit comments

Comments
 (0)