diff --git a/CHANGELOG.md b/CHANGELOG.md index 24c5cda..6cb6fdc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.11.0] - 2024-04-01 + - Remove `async_trait` dependency - Bump up MSRV to `1.75` @@ -175,7 +177,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - First release -[Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/deadpool-v0.10.0...HEAD +[Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/deadpool-v0.11.0...HEAD +[0.11.0]: https://github.com/bikeshedder/deadpool/compare/deadpool-v0.10.0...deadpool-v0.11.0 [0.10.0]: https://github.com/bikeshedder/deadpool/compare/deadpool-v0.9.5...deadpool-v0.10.0 [0.9.5]: https://github.com/bikeshedder/deadpool/compare/deadpool-v0.9.4...deadpool-v0.9.5 [0.9.4]: https://github.com/bikeshedder/deadpool/compare/deadpool-v0.9.3...deadpool-v0.9.4 diff --git a/Cargo.toml b/Cargo.toml index c5bdf64..61c7328 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deadpool" -version = "0.10.0" +version = "0.11.0" edition = "2021" rust-version = "1.75" authors = ["Michael P. Jung "] diff --git a/diesel/CHANGELOG.md b/diesel/CHANGELOG.md index b3f15c8..201fe23 100644 --- a/diesel/CHANGELOG.md +++ b/diesel/CHANGELOG.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.0] - 2024-04-01 + - Update `deadpool` dependency to version `0.11` - Remove `async_trait` dependency - Bump up MSRV to `1.75` @@ -61,7 +63,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - First release -[Unreleased]: https://github.com/bikeshedder/deadpool/compare/deadpool-diesel-v0.5.0...HEAD +[Unreleased]: https://github.com/bikeshedder/deadpool/compare/deadpool-diesel-v0.6.0...HEAD +[0.6.0]: https://github.com/bikeshedder/deadpool/compare/deadpool-diesel-v0.5.0...deadpool-diesel-v0.6.0 [0.5.0]: https://github.com/bikeshedder/deadpool/compare/deadpool-diesel-v0.4.1...deadpool-diesel-v0.5.0 [0.4.1]: https://github.com/bikeshedder/deadpool/compare/deadpool-diesel-v0.4.0...deadpool-diesel-v0.4.1 [0.4.0]: https://github.com/bikeshedder/deadpool/compare/deadpool-diesel-v0.3.1...deadpool-diesel-v0.4.0 diff --git a/diesel/Cargo.toml b/diesel/Cargo.toml index 21ecbc9..a2c6914 100644 --- a/diesel/Cargo.toml +++ b/diesel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deadpool-diesel" -version = "0.5.0" +version = "0.6.0" edition = "2021" rust-version = "1.75" authors = ["Michael P. Jung "] @@ -25,7 +25,7 @@ serde = ["deadpool/serde"] tracing = ["deadpool-sync/tracing"] [dependencies] -deadpool = { path = "../", version = "0.10.0", default-features = false, features = [ +deadpool = { path = "../", version = "0.11.0", default-features = false, features = [ "managed", ] } deadpool-sync = { path = "../sync", version = "0.1.1" } diff --git a/examples/diesel/Cargo.toml b/examples/diesel/Cargo.toml index 6b1eea2..44b7a6b 100644 --- a/examples/diesel/Cargo.toml +++ b/examples/diesel/Cargo.toml @@ -10,10 +10,8 @@ publish = false actix-web = "4.0.1" anyhow = "1.0.65" config = "0.14" -deadpool = { version = "0.10", path = "../.." } -deadpool-diesel = { version = "0.5.0", path = "../../diesel", features = [ - "postgres", -] } +deadpool = { path = "../.." } +deadpool-diesel = { path = "../../diesel", features = ["postgres"] } diesel = { version = "2.0.0", features = ["postgres", "chrono"] } dotenvy = "0.15" serde = { version = "1.0", features = ["derive"] } diff --git a/examples/postgres-actix-web/Cargo.toml b/examples/postgres-actix-web/Cargo.toml index 3631e64..869349b 100644 --- a/examples/postgres-actix-web/Cargo.toml +++ b/examples/postgres-actix-web/Cargo.toml @@ -9,9 +9,7 @@ publish = false [dependencies] actix-web = "4.0.1" config = "0.14" -deadpool-postgres = { version = "0.12.0", path = "../../postgres", features = [ - "serde", -] } +deadpool-postgres = { path = "../../postgres", features = ["serde"] } dotenvy = "0.15" serde = { version = "1.0", features = ["derive"] } thiserror = "1.0" diff --git a/examples/postgres-benchmark/Cargo.toml b/examples/postgres-benchmark/Cargo.toml index b40879e..a6e0989 100644 --- a/examples/postgres-benchmark/Cargo.toml +++ b/examples/postgres-benchmark/Cargo.toml @@ -8,9 +8,7 @@ publish = false [dependencies] config = "0.14" -deadpool-postgres = { version = "0.12.0", path = "../../postgres", features = [ - "serde", -] } +deadpool-postgres = { path = "../../postgres", features = ["serde"] } dotenvy = "0.15" serde = { version = "1.0", features = ["derive"] } tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] } diff --git a/examples/postgres-hyper/Cargo.toml b/examples/postgres-hyper/Cargo.toml index 3ca760f..11f1a79 100644 --- a/examples/postgres-hyper/Cargo.toml +++ b/examples/postgres-hyper/Cargo.toml @@ -8,9 +8,7 @@ publish = false [dependencies] config = "0.14" -deadpool-postgres = { version = "0.12.0", path = "../../postgres", features = [ - "serde", -] } +deadpool-postgres = { path = "../../postgres", features = ["serde"] } dotenvy = "0.15" hyper = { version = "0.14", features = ["http1", "http2", "server", "runtime"] } serde = { version = "1", features = ["derive"] } diff --git a/examples/readme/Cargo.toml b/examples/readme/Cargo.toml index c6ee934..17f17b4 100644 --- a/examples/readme/Cargo.toml +++ b/examples/readme/Cargo.toml @@ -7,9 +7,7 @@ edition = "2021" [dependencies] config = "0.14" -deadpool-postgres = { version = "0.12.0", path = "../../postgres", features = [ - "serde", -] } +deadpool-postgres = { path = "../../postgres", features = ["serde"] } dotenvy = "0.15.7" serde = { version = "1.0.195", features = ["derive"] } tokio = { version = "1.35.1", features = ["macros", "rt-multi-thread"] } diff --git a/examples/redis-actix-web/Cargo.toml b/examples/redis-actix-web/Cargo.toml index ceb10f3..aed33e4 100644 --- a/examples/redis-actix-web/Cargo.toml +++ b/examples/redis-actix-web/Cargo.toml @@ -8,5 +8,5 @@ publish = false [dependencies] actix-web = "4.0.0-beta.8" -deadpool-redis = { version = "0.14", path = "../../redis" } +deadpool-redis = { path = "../../redis" } redis = { version = "0.25", features = ["tokio-comp"] } diff --git a/lapin/CHANGELOG.md b/lapin/CHANGELOG.md index 6484e9c..52ee241 100644 --- a/lapin/CHANGELOG.md +++ b/lapin/CHANGELOG.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.12.0] - 2024-04-01 + - Update `deadpool` dependency to version `0.11` - Remove `async_trait` dependency - Bump up MSRV to `1.75` @@ -63,7 +65,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - First release -[Unreleased]: https://github.com/bikeshedder/deadpool/compare/deadpool-lapin-v0.11.0...HEAD +[Unreleased]: https://github.com/bikeshedder/deadpool/compare/deadpool-lapin-v0.12.0...HEAD +[0.12.0]: https://github.com/bikeshedder/deadpool/compare/deadpool-lapin-v0.11.0...deadpool-lapin-v0.12.0 [0.11.0]: https://github.com/bikeshedder/deadpool/compare/deadpool-lapin-v0.10.0...deadpool-lapin-v0.11.0 [0.10.0]: https://github.com/bikeshedder/deadpool/compare/deadpool-lapin-v0.9.1...deadpool-lapin-v0.10.0 [0.9.1]: https://github.com/bikeshedder/deadpool/compare/deadpool-lapin-v0.9.0...deadpool-lapin-v0.9.1 diff --git a/lapin/Cargo.toml b/lapin/Cargo.toml index 8a6599d..6264962 100644 --- a/lapin/Cargo.toml +++ b/lapin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deadpool-lapin" -version = "0.11.0" +version = "0.12.0" edition = "2021" rust-version = "1.75" authors = ["Michael P. Jung "] @@ -22,7 +22,7 @@ serde = ["deadpool/serde", "dep:serde"] [dependencies] async-executor-trait = { version = "2.1", optional = true } -deadpool = { path = "../", version = "0.10.0", default-features = false, features = [ +deadpool = { path = "../", version = "0.11.0", default-features = false, features = [ "managed", ] } lapin = { version = "2.0", default-features = false } diff --git a/memcached/CHANGELOG.md b/memcached/CHANGELOG.md index 05f8380..bb66b40 100644 --- a/memcached/CHANGELOG.md +++ b/memcached/CHANGELOG.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0] - 2024-04-01 + - Update `deadpool` dependency to version `0.11` - Remove `async_trait` dependency - Bump up MSRV to `1.75` @@ -27,7 +29,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release. -[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/deadpool-memcached-v0.2.0...HEAD -[0.1.2]: https://github.com/bikeshedder/deadpool/deadpool-memcached-v0.1.2 -[0.1.1]: https://github.com/bikeshedder/deadpool/deadpool-memcached-v0.1.1 +[Unreleased]: https://github.com/assert-rs/predicates-rs/compare/deadpool-memcached-v0.3.0...HEAD +[0.3.0]: https://github.com/bikeshedder/deadpool/compare/deadpool-memcached-v0.2.0...deadpool-memcached-v0.3.0 +[0.2.0]: https://github.com/bikeshedder/deadpool/compare/deadpool-memcached-v0.1.2...deadpool-memcached-v0.2.0 +[0.1.2]: https://github.com/bikeshedder/deadpool/compare/deadpool-memcached-v0.1.0...deadpool-memcached-v0.1.2 [0.1.0]: https://github.com/bikeshedder/deadpool/deadpool-memcached-v0.1.0 \ No newline at end of file diff --git a/memcached/Cargo.toml b/memcached/Cargo.toml index d3dd1a9..5f4363d 100644 --- a/memcached/Cargo.toml +++ b/memcached/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deadpool-memcached" -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.75" authors = [ @@ -23,7 +23,7 @@ tcp = ["async-memcached/tcp"] [dependencies] async-memcached = { version = "0.1", default-features = false } -deadpool = { path = "../", version = "0.10.0", default-features = false, features = [ +deadpool = { path = "../", version = "0.11.0", default-features = false, features = [ "managed", ] } futures = { version = "0.3", features = ["compat"] } diff --git a/postgres/CHANGELOG.md b/postgres/CHANGELOG.md index 2d20920..da39358 100644 --- a/postgres/CHANGELOG.md +++ b/postgres/CHANGELOG.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.0] - 2024-04-01 + - Update `deadpool` dependency to version `0.11` - Remove `async_trait` dependency - Bump up MSRV to `1.75` @@ -195,7 +197,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - First release -[Unreleased]: https://github.com/bikeshedder/deadpool/compare/deadpool-postgres-v0.12.1...HEAD +[Unreleased]: https://github.com/bikeshedder/deadpool/compare/deadpool-postgres-v0.13.0...HEAD +[0.13.0]: https://github.com/bikeshedder/deadpool/compare/deadpool-postgres-v0.12.1...deadpool-postgres-v0.13.0 [0.12.1]: https://github.com/bikeshedder/deadpool/compare/deadpool-postgres-v0.12.0...deadpool-postgres-v0.12.1 [0.12.0]: https://github.com/bikeshedder/deadpool/compare/deadpool-postgres-v0.11.0...deadpool-postgres-v0.12.0 [0.11.0]: https://github.com/bikeshedder/deadpool/compare/deadpool-postgres-v0.10.5...deadpool-postgres-v0.11.0 diff --git a/postgres/Cargo.toml b/postgres/Cargo.toml index b8b751b..794b873 100644 --- a/postgres/Cargo.toml +++ b/postgres/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deadpool-postgres" -version = "0.12.1" +version = "0.13.0" edition = "2021" rust-version = "1.75" authors = ["Michael P. Jung "] @@ -20,7 +20,7 @@ rt_async-std_1 = ["deadpool/rt_async-std_1"] serde = ["deadpool/serde", "dep:serde"] [dependencies] -deadpool = { path = "../", version = "0.10.0", default-features = false, features = [ +deadpool = { path = "../", version = "0.11.0", default-features = false, features = [ "managed", ] } serde = { package = "serde", version = "1.0", features = [ diff --git a/r2d2/CHANGELOG.md b/r2d2/CHANGELOG.md index aac1604..5c48c5b 100644 --- a/r2d2/CHANGELOG.md +++ b/r2d2/CHANGELOG.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.0] - 2024-04-01 + - Update `deadpool` dependency to version `0.11` - Remove `async_trait` dependency - Bump up MSRV to `1.75` @@ -30,7 +32,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - First release -[Unreleased]: https://github.com/bikeshedder/deadpool/compare/deadpool-r2d2-v0.3.0...HEAD +[Unreleased]: https://github.com/bikeshedder/deadpool/compare/deadpool-r2d2-v0.4.0...HEAD +[0.4.0]: https://github.com/bikeshedder/deadpool/compare/deadpool-r2d2-v0.3.0...deadpool-r2d2-v0.4.0 [0.3.0]: https://github.com/bikeshedder/deadpool/compare/deadpool-r2d2-v0.2.0...deadpool-r2d2-v0.3.0 [0.2.0]: https://github.com/bikeshedder/deadpool/compare/deadpool-r2d2-v0.1.0...deadpool-r2d2-v0.2.0 [0.1.0]: https://github.com/bikeshedder/deadpool/releases/tag/deadpool-r2d2-v0.1.0 \ No newline at end of file diff --git a/r2d2/Cargo.toml b/r2d2/Cargo.toml index 807cc61..77f0db4 100644 --- a/r2d2/Cargo.toml +++ b/r2d2/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deadpool-r2d2" -version = "0.3.0" +version = "0.4.0" edition = "2021" rust-version = "1.75" authors = ["Michael P. Jung "] @@ -22,7 +22,7 @@ serde = ["deadpool/serde"] tracing = ["deadpool-sync/tracing"] [dependencies] -deadpool = { path = "../", version = "0.10.0", default-features = false, features = [ +deadpool = { path = "../", version = "0.11.0", default-features = false, features = [ "managed", ] } deadpool-sync = { path = "../sync", version = "0.1.1" } @@ -30,5 +30,5 @@ r2d2 = { version = "0.8.9", default-features = false } [dev-dependencies] tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread"] } -deadpool = { path = "../", version = "0.10.0", features = ["rt_tokio_1"] } +deadpool = { path = "../", version = "0.11.0-pre", features = ["rt_tokio_1"] } r2d2_postgres = "0.18" diff --git a/redis/CHANGELOG.md b/redis/CHANGELOG.md index 27e29cb..b9d844d 100644 --- a/redis/CHANGELOG.md +++ b/redis/CHANGELOG.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.15.0] - 2024-04-01 + - Update `redis` dependency to version `0.25` - Update `deadpool` dependency to version `0.11` - Remove `async_trait` dependency @@ -150,7 +152,8 @@ Release of 0.6 and 0.7 with the following feature backported: - First release -[Unreleased]: https://github.com/bikeshedder/deadpool/compare/deadpool-redis-v0.14.0...HEAD +[Unreleased]: https://github.com/bikeshedder/deadpool/compare/deadpool-redis-v0.15.0...HEAD +[0.15.0]: https://github.com/bikeshedder/deadpool/compare/deadpool-redis-v0.14.0...deadpool-redis-v0.15.0 [0.14.0]: https://github.com/bikeshedder/deadpool/compare/deadpool-redis-v0.13.0...deadpool-redis-v0.14.0 [0.13.0]: https://github.com/bikeshedder/deadpool/compare/deadpool-redis-v0.12.0...deadpool-redis-v0.13.0 [0.12.0]: https://github.com/bikeshedder/deadpool/compare/deadpool-redis-v0.11.1...deadpool-redis-v0.12.0 diff --git a/redis/Cargo.toml b/redis/Cargo.toml index 6986331..a2b30d8 100644 --- a/redis/Cargo.toml +++ b/redis/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deadpool-redis" -version = "0.14.0" +version = "0.15.0" edition = "2021" rust-version = "1.75" authors = [ @@ -25,7 +25,7 @@ serde = ["deadpool/serde", "dep:serde"] cluster = ["redis/cluster-async"] [dependencies] -deadpool = { path = "../", version = "0.10.0", default-features = false, features = [ +deadpool = { path = "../", version = "0.11.0", default-features = false, features = [ "managed", ] } redis = { version = "0.25", default-features = false, features = ["aio"] } diff --git a/sqlite/CHANGELOG.md b/sqlite/CHANGELOG.md index 177dde6..578ca8e 100644 --- a/sqlite/CHANGELOG.md +++ b/sqlite/CHANGELOG.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.0] - 2024-04-01 + - Update `rusqlite` dependency to version `0.31` - Remove `async_trait` dependency @@ -54,7 +56,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - First release -[Unreleased]: https://github.com/bikeshedder/deadpool/compare/deadpool-sqlite-v0.6.0...HEAD +[Unreleased]: https://github.com/bikeshedder/deadpool/compare/deadpool-sqlite-v0.8.0...HEAD +[0.8.0]: https://github.com/bikeshedder/deadpool/compare/deadpool-sqlite-v0.7.0...deadpool-sqlite-v0.8.0 [0.7.0]: https://github.com/bikeshedder/deadpool/compare/deadpool-sqlite-v0.6.0...deadpool-sqlite-v0.7.0 [0.6.0]: https://github.com/bikeshedder/deadpool/compare/deadpool-sqlite-v0.5.0...deadpool-sqlite-v0.6.0 [0.5.0]: https://github.com/bikeshedder/deadpool/compare/deadpool-sqlite-v0.4.0...deadpool-sqlite-v0.5.0 diff --git a/sqlite/Cargo.toml b/sqlite/Cargo.toml index 230416a..42526cb 100644 --- a/sqlite/Cargo.toml +++ b/sqlite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deadpool-sqlite" -version = "0.7.0" +version = "0.8.0" edition = "2021" rust-version = "1.75" authors = ["Michael P. Jung "] @@ -22,7 +22,7 @@ serde = ["deadpool/serde", "dep:serde"] tracing = ["deadpool-sync/tracing"] [dependencies] -deadpool = { path = "../", version = "0.10.0", default-features = false, features = [ +deadpool = { path = "../", version = "0.11.0", default-features = false, features = [ "managed", ] } deadpool-sync = { path = "../sync", version = "0.1.1" }