Skip to content

Commit 0a08059

Browse files
authored
Merge pull request #4 from zcash/rusqlite-version-bumps
`rusqlite` version bumps
2 parents 5559369 + 8c61903 commit 0a08059

File tree

8 files changed

+280
-223
lines changed

8 files changed

+280
-223
lines changed

Cargo.lock

Lines changed: 233 additions & 208 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "1.59.0"
2+
channel = "1.77.0"
33
components = ["clippy", "rustfmt"]

schemerz-postgres/CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ and this library adheres to Rust's notion of
1010
## [Unreleased]
1111

1212
### Changed
13+
- MSRV is now 1.77.
14+
15+
## [0.191.0] - 2024-10-16
16+
### Changed
17+
- Migrated to `schemerz 0.2.0`.
1318
- **IMPORTANT BREAKING CHANGE**: `schemerz_postgres::PostgresAdapter::new` now
1419
uses a default table name of `_schemerz` when the `table_name` argument is
1520
`None`. If you were not setting this argument before and are migrating from
@@ -20,5 +25,6 @@ Initial release. The API is identical to `schemer-postgres 0.2.0`.
2025

2126

2227
<!-- next-url -->
23-
[Unreleased]: https://github.com/zcash/schemerz/compare/schemerz-postgres-0.1.0...HEAD
24-
[0.190.0]: https://github.com/zcash/schemerz/compare/1bfd952b035b87a39df955376e0bdddf98eb6c99...schemerz-postgres-0.1.0
28+
[Unreleased]: https://github.com/zcash/schemerz/compare/schemerz-postgres-0.191.0...HEAD
29+
[0.191.0]: https://github.com/zcash/schemerz/compare/schemerz-postgres-0.190.0...schemerz-postgres-0.191.0
30+
[0.190.0]: https://github.com/zcash/schemerz/compare/1bfd952b035b87a39df955376e0bdddf98eb6c99...schemerz-postgres-0.190.0

schemerz-postgres/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "schemerz-postgres"
3-
version = "0.190.0"
3+
version = "0.191.0"
44
edition = "2021"
5-
rust-version = "1.59"
5+
rust-version = "1.77"
66
authors = [
77
"Jack Grigg <[email protected]>",
88
"Kris Nuttycombe <[email protected]>",
@@ -18,4 +18,4 @@ repository = "https://github.com/zcash/schemerz"
1818
postgres = { version = "0.19", features = ["with-uuid-1"] }
1919
uuid = { version = "1" }
2020

21-
schemerz = { version = "0.1", path = "../schemerz" }
21+
schemerz = { version = "0.2", path = "../schemerz" }

schemerz-rusqlite/CHANGELOG.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,23 @@ and this library adheres to Rust's notion of
99
<!-- next-header -->
1010
## [Unreleased]
1111

12+
## [0.320.0] - 2024-10-16
1213
### Changed
14+
- MSRV is now 1.77.
15+
- Migrated to `rusqlite 0.32`.
16+
17+
## [0.310.0] - 2024-10-16
18+
### Changed
19+
- MSRV is now 1.63.
20+
- Migrated to `rusqlite 0.31`.
21+
22+
## [0.300.0] - 2024-10-16
23+
### Changed
24+
- Migrated to `rusqlite 0.30`.
25+
26+
## [0.291.0] - 2024-10-16
27+
### Changed
28+
- Migrated to `schemerz 0.2.0`.
1329
- **IMPORTANT BREAKING CHANGE**: `schemerz_rusqlite::RusqliteAdapter::new` now
1430
uses a default table name of `_schemerz` when the `table_name` argument is
1531
`None`. If you were not setting this argument before and are migrating from
@@ -20,5 +36,9 @@ Initial release. The API is identical to `schemer-rusqlite 0.2.2`.
2036

2137

2238
<!-- next-url -->
23-
[Unreleased]: https://github.com/zcash/schemerz/compare/schemerz-rusqlite-0.1.0...HEAD
24-
[0.290.0]: https://github.com/zcash/schemerz/compare/1bfd952b035b87a39df955376e0bdddf98eb6c99...schemerz-rusqlite-0.1.0
39+
[Unreleased]: https://github.com/zcash/schemerz/compare/schemerz-rusqlite-0.320.0...HEAD
40+
[0.320.0]: https://github.com/zcash/schemerz/compare/schemerz-rusqlite-0.310.0...schemerz-rusqlite-0.320.0
41+
[0.310.0]: https://github.com/zcash/schemerz/compare/schemerz-rusqlite-0.300.0...schemerz-rusqlite-0.310.0
42+
[0.300.0]: https://github.com/zcash/schemerz/compare/schemerz-rusqlite-0.291.0...schemerz-rusqlite-0.300.0
43+
[0.291.0]: https://github.com/zcash/schemerz/compare/schemerz-rusqlite-0.290.0...schemerz-rusqlite-0.291.0
44+
[0.290.0]: https://github.com/zcash/schemerz/compare/1bfd952b035b87a39df955376e0bdddf98eb6c99...schemerz-rusqlite-0.290.0

schemerz-rusqlite/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "schemerz-rusqlite"
3-
version = "0.290.0"
3+
version = "0.320.0"
44
edition = "2021"
5-
rust-version = "1.59"
5+
rust-version = "1.77"
66
authors = [
77
"Jack Grigg <[email protected]>",
88
"Kris Nuttycombe <[email protected]>",
@@ -16,6 +16,6 @@ repository = "https://github.com/zcash/schemerz"
1616

1717
[dependencies]
1818
uuid = { version = "1" }
19-
rusqlite = "0.29.0"
19+
rusqlite = "0.32"
2020

21-
schemerz = { version = "0.1", path = "../schemerz" }
21+
schemerz = { version = "0.2", path = "../schemerz" }

schemerz/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ and this library adheres to Rust's notion of
99
<!-- next-header -->
1010
## [Unreleased]
1111

12+
### Changed
13+
- MSRV is now 1.77.
14+
15+
## [0.2.0] - 2024-10-16
16+
1217
### Fixed
1318
- `schemerz::Migrator::{register, register_multiple}` can now register dependent
1419
migrations before their dependencies. Previously this would result in a graph
@@ -69,5 +74,6 @@ Initial release. The API is identical to `schemer 0.2.1`.
6974

7075

7176
<!-- next-url -->
72-
[Unreleased]: https://github.com/zcash/schemerz/compare/schemerz-0.1.0...HEAD
77+
[Unreleased]: https://github.com/zcash/schemerz/compare/schemerz-0.2.0...HEAD
78+
[0.2.0]: https://github.com/zcash/schemerz/compare/schemerz-0.1.0...schemerz-0.2.0
7379
[0.1.0]: https://github.com/zcash/schemerz/compare/1bfd952b035b87a39df955376e0bdddf98eb6c99...schemerz-0.1.0

schemerz/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "schemerz"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
5-
rust-version = "1.59"
5+
rust-version = "1.77"
66
authors = [
77
"Jack Grigg <[email protected]>",
88
"Kris Nuttycombe <[email protected]>",

0 commit comments

Comments
 (0)