diff --git a/Cargo.lock b/Cargo.lock index 9ee59bc..a6b10c8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1709,7 +1709,7 @@ dependencies = [ [[package]] name = "squill" -version = "0.9.2" +version = "0.10.0" dependencies = [ "anyhow", "lazy_static", @@ -1726,7 +1726,7 @@ dependencies = [ [[package]] name = "squill-cli" -version = "0.9.2" +version = "0.9.3" dependencies = [ "anyhow", "clap", diff --git a/squill-cli/CHANGELOG.md b/squill-cli/CHANGELOG.md index 30dbe5b..2870ab0 100644 --- a/squill-cli/CHANGELOG.md +++ b/squill-cli/CHANGELOG.md @@ -9,6 +9,12 @@ This project uses [Semantic Versioning], and is currently in a pre-release state ## Unreleased +## [0.9.3](https://github.com/jdkaplan/squill/compare/squill-cli-v0.9.2...squill-cli-v0.9.3) - 2024-10-07 + +### Added + +- Add only_up config field to prevent reversing migrations ([#205](https://github.com/jdkaplan/squill/pull/205)) + ## [0.9.2](https://github.com/jdkaplan/squill/compare/squill-cli-v0.9.1...squill-cli-v0.9.2) - 2024-10-06 ### Other diff --git a/squill-cli/Cargo.toml b/squill-cli/Cargo.toml index b92a3aa..860ceb1 100644 --- a/squill-cli/Cargo.toml +++ b/squill-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "squill-cli" -version = "0.9.2" +version = "0.9.3" description = "Command-line tool for PostgreSQL database migrations" edition.workspace = true @@ -25,7 +25,7 @@ clap = { version = "4.5.8", features = ["derive"] } figment = { version = "0.10.19", features = ["env", "toml"] } serde = { version = "1.0.203", features = ["derive"] } sqlx = { version = "0.8.2", features = ["runtime-tokio-rustls"] } -squill = { version = "=0.9.2", path = "../squill" } +squill = { version = "=0.10.0", path = "../squill" } tabled = { version = "0.16.0", git = "https://github.com/jdkaplan/tabled.git", rev="6462758e28619af0b578c37220b74e4e660e0d4f" } time = "0.3.36" tokio = { version = "1.40.0", features = ["full"] } diff --git a/squill/CHANGELOG.md b/squill/CHANGELOG.md index 858c582..e23f365 100644 --- a/squill/CHANGELOG.md +++ b/squill/CHANGELOG.md @@ -9,6 +9,12 @@ This project uses [Semantic Versioning], and is currently in a pre-release state ## Unreleased +## [0.10.0](https://github.com/jdkaplan/squill/compare/squill-v0.9.2...squill-v0.10.0) - 2024-10-07 + +### Added + +- [**breaking**] Add only_up config field to prevent reversing migrations ([#205](https://github.com/jdkaplan/squill/pull/205)) + ## [0.9.2](https://github.com/jdkaplan/squill/compare/squill-v0.9.1...squill-v0.9.2) - 2024-10-06 ### Other diff --git a/squill/Cargo.toml b/squill/Cargo.toml index 35b45c8..5d6d15b 100644 --- a/squill/Cargo.toml +++ b/squill/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "squill" -version = "0.9.2" +version = "0.10.0" description = "Manage PostgreSQL database migrations" edition.workspace = true