Skip to content

Commit c7862a6

Browse files
committed
v0.36.0
1 parent 23bf3e1 commit c7862a6

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### v0.36.0
2+
- (Routine Maintenance) Updated `rusqlite` from `0.35` to `0.36`.
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+
15
### v0.35.0
26
- (Routine Maintenance) Updated `rusqlite` from `0.34` to `0.35`.
37
- 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.
@@ -8,7 +12,6 @@
812
- ~~Fixed issue with macros failing if Rusqlite is not linked to the current crate.~~
913
- Replaced unmaintained dependency `proc_macro_error`.
1014

11-
1215
### v0.33.0
1316
- (Routine Maintenance) Updated `rusqlite` from `0.32` to `0.33`.
1417
- 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.35.0"
10+
version = "0.36.0"
1111
authors = ["Colonial"]
1212
edition = "2021"
1313
license = "MIT OR Apache-2.0"

exemplar/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ all-features = true
1515
rustdoc-args = ["--cfg", "docsrs"]
1616

1717
[dependencies]
18-
exemplar_proc_macro = "0.35.0"
19-
rusqlite = "0.35"
18+
exemplar_proc_macro = "0.36.0"
19+
rusqlite = "0.36"
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
@@ -253,7 +253,7 @@ pub trait Model {
253253
/// This method allocates at least once, in order to [`Box`] the returned slice.
254254
///
255255
/// If the implementing type has any fields annotated with `#[bind]`, an additional boxing will be incurred for each annotated field.
256-
fn to_params(&self) -> Result<Parameters>;
256+
fn to_params(&self) -> Result<Parameters<'_>>;
257257

258258
/// Static dispatch version of [`Model::metadata_dyn`].
259259
fn metadata() -> ModelMeta

0 commit comments

Comments
 (0)