Skip to content

Commit

Permalink
Merge pull request #4 from zcash/rusqlite-version-bumps
Browse files Browse the repository at this point in the history
`rusqlite` version bumps
  • Loading branch information
str4d authored Oct 16, 2024
2 parents 5559369 + 8c61903 commit 0a08059
Show file tree
Hide file tree
Showing 8 changed files with 280 additions and 223 deletions.
441 changes: 233 additions & 208 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.59.0"
channel = "1.77.0"
components = ["clippy", "rustfmt"]
10 changes: 8 additions & 2 deletions schemerz-postgres/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ and this library adheres to Rust's notion of
## [Unreleased]

### Changed
- MSRV is now 1.77.

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


<!-- next-url -->
[Unreleased]: https://github.com/zcash/schemerz/compare/schemerz-postgres-0.1.0...HEAD
[0.190.0]: https://github.com/zcash/schemerz/compare/1bfd952b035b87a39df955376e0bdddf98eb6c99...schemerz-postgres-0.1.0
[Unreleased]: https://github.com/zcash/schemerz/compare/schemerz-postgres-0.191.0...HEAD
[0.191.0]: https://github.com/zcash/schemerz/compare/schemerz-postgres-0.190.0...schemerz-postgres-0.191.0
[0.190.0]: https://github.com/zcash/schemerz/compare/1bfd952b035b87a39df955376e0bdddf98eb6c99...schemerz-postgres-0.190.0
6 changes: 3 additions & 3 deletions schemerz-postgres/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "schemerz-postgres"
version = "0.190.0"
version = "0.191.0"
edition = "2021"
rust-version = "1.59"
rust-version = "1.77"
authors = [
"Jack Grigg <[email protected]>",
"Kris Nuttycombe <[email protected]>",
Expand All @@ -18,4 +18,4 @@ repository = "https://github.com/zcash/schemerz"
postgres = { version = "0.19", features = ["with-uuid-1"] }
uuid = { version = "1" }

schemerz = { version = "0.1", path = "../schemerz" }
schemerz = { version = "0.2", path = "../schemerz" }
24 changes: 22 additions & 2 deletions schemerz-rusqlite/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,23 @@ and this library adheres to Rust's notion of
<!-- next-header -->
## [Unreleased]

## [0.320.0] - 2024-10-16
### Changed
- MSRV is now 1.77.
- Migrated to `rusqlite 0.32`.

## [0.310.0] - 2024-10-16
### Changed
- MSRV is now 1.63.
- Migrated to `rusqlite 0.31`.

## [0.300.0] - 2024-10-16
### Changed
- Migrated to `rusqlite 0.30`.

## [0.291.0] - 2024-10-16
### Changed
- Migrated to `schemerz 0.2.0`.
- **IMPORTANT BREAKING CHANGE**: `schemerz_rusqlite::RusqliteAdapter::new` now
uses a default table name of `_schemerz` when the `table_name` argument is
`None`. If you were not setting this argument before and are migrating from
Expand All @@ -20,5 +36,9 @@ Initial release. The API is identical to `schemer-rusqlite 0.2.2`.


<!-- next-url -->
[Unreleased]: https://github.com/zcash/schemerz/compare/schemerz-rusqlite-0.1.0...HEAD
[0.290.0]: https://github.com/zcash/schemerz/compare/1bfd952b035b87a39df955376e0bdddf98eb6c99...schemerz-rusqlite-0.1.0
[Unreleased]: https://github.com/zcash/schemerz/compare/schemerz-rusqlite-0.320.0...HEAD
[0.320.0]: https://github.com/zcash/schemerz/compare/schemerz-rusqlite-0.310.0...schemerz-rusqlite-0.320.0
[0.310.0]: https://github.com/zcash/schemerz/compare/schemerz-rusqlite-0.300.0...schemerz-rusqlite-0.310.0
[0.300.0]: https://github.com/zcash/schemerz/compare/schemerz-rusqlite-0.291.0...schemerz-rusqlite-0.300.0
[0.291.0]: https://github.com/zcash/schemerz/compare/schemerz-rusqlite-0.290.0...schemerz-rusqlite-0.291.0
[0.290.0]: https://github.com/zcash/schemerz/compare/1bfd952b035b87a39df955376e0bdddf98eb6c99...schemerz-rusqlite-0.290.0
8 changes: 4 additions & 4 deletions schemerz-rusqlite/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "schemerz-rusqlite"
version = "0.290.0"
version = "0.320.0"
edition = "2021"
rust-version = "1.59"
rust-version = "1.77"
authors = [
"Jack Grigg <[email protected]>",
"Kris Nuttycombe <[email protected]>",
Expand All @@ -16,6 +16,6 @@ repository = "https://github.com/zcash/schemerz"

[dependencies]
uuid = { version = "1" }
rusqlite = "0.29.0"
rusqlite = "0.32"

schemerz = { version = "0.1", path = "../schemerz" }
schemerz = { version = "0.2", path = "../schemerz" }
8 changes: 7 additions & 1 deletion schemerz/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ and this library adheres to Rust's notion of
<!-- next-header -->
## [Unreleased]

### Changed
- MSRV is now 1.77.

## [0.2.0] - 2024-10-16

### Fixed
- `schemerz::Migrator::{register, register_multiple}` can now register dependent
migrations before their dependencies. Previously this would result in a graph
Expand Down Expand Up @@ -69,5 +74,6 @@ Initial release. The API is identical to `schemer 0.2.1`.


<!-- next-url -->
[Unreleased]: https://github.com/zcash/schemerz/compare/schemerz-0.1.0...HEAD
[Unreleased]: https://github.com/zcash/schemerz/compare/schemerz-0.2.0...HEAD
[0.2.0]: https://github.com/zcash/schemerz/compare/schemerz-0.1.0...schemerz-0.2.0
[0.1.0]: https://github.com/zcash/schemerz/compare/1bfd952b035b87a39df955376e0bdddf98eb6c99...schemerz-0.1.0
4 changes: 2 additions & 2 deletions schemerz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "schemerz"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
rust-version = "1.59"
rust-version = "1.77"
authors = [
"Jack Grigg <[email protected]>",
"Kris Nuttycombe <[email protected]>",
Expand Down

0 comments on commit 0a08059

Please sign in to comment.