diff --git a/CHANGELOG.md b/CHANGELOG.md index d263ecf..8da9f16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.14.3] - 2023-12-13 +### Fixed +- version not incremented in Cargo.toml. + ## [0.14.2] - 2023-12-13 ### Fixed - `to_processing` metric using wrong `updated_at`. @@ -141,8 +145,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Future Job support using new `run_at` Job field. - Reschedule endpoint allowing the Job Runner to manage a unique/singleton Job rescheduling itself. -[Unreleased]: https://github.com/rust-playground/relay-rs/compare/v0.14.2...HEAD -[0.14.2]: https://github.com/rust-playground/relay-rs/compare/v0.14.1...v0.14.2 +[Unreleased]: https://github.com/rust-playground/relay-rs/compare/v0.14.3...HEAD +[0.14.3]: https://github.com/rust-playground/relay-rs/compare/v0.14.2...v0.14.3 +[0.14.2]: https://github.com/rust-playground/relay-rs/compare/v0.14.2...v0.14.2 [0.14.1]: https://github.com/rust-playground/relay-rs/compare/v0.14.0...v0.14.1 [0.14.0]: https://github.com/rust-playground/relay-rs/compare/v0.13.0...v0.14.0 [0.13.0]: https://github.com/rust-playground/relay-rs/compare/v0.12.1...v0.13.0 diff --git a/Cargo.lock b/Cargo.lock index 8862bdb..435549a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1457,7 +1457,7 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" [[package]] name = "relay" -version = "0.14.1" +version = "0.14.3" dependencies = [ "anyhow", "clap", @@ -1476,7 +1476,7 @@ dependencies = [ [[package]] name = "relay-backend-postgres" -version = "0.8.1" +version = "0.14.3" dependencies = [ "anyhow", "async-trait", diff --git a/relay-backend-postgres/Cargo.toml b/relay-backend-postgres/Cargo.toml index 5c89738..65f0d18 100644 --- a/relay-backend-postgres/Cargo.toml +++ b/relay-backend-postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "relay-backend-postgres" -version = "0.8.1" +version = "0.14.3" edition.workspace = true authors.workspace = true description.workspace = true diff --git a/relay/Cargo.toml b/relay/Cargo.toml index 45e4d5f..0647542 100644 --- a/relay/Cargo.toml +++ b/relay/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "relay" -version = "0.14.1" +version = "0.14.3" edition.workspace = true authors.workspace = true description.workspace = true