Skip to content

Commit

Permalink
Release deadpool 0.11 and all deadpool-* crates
Browse files Browse the repository at this point in the history
  • Loading branch information
bikeshedder committed Mar 31, 2024
1 parent 979f1b2 commit 957e126
Show file tree
Hide file tree
Showing 22 changed files with 57 additions and 43 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`

Expand Down Expand Up @@ -175,7 +177,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- First release

<!-- next-url -->
[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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <michael.jung@terreon.de>"]
Expand Down
5 changes: 4 additions & 1 deletion diesel/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down Expand Up @@ -61,7 +63,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- First release

<!-- next-url -->
[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
Expand Down
4 changes: 2 additions & 2 deletions diesel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <michael.jung@terreon.de>"]
Expand All @@ -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" }
Expand Down
6 changes: 2 additions & 4 deletions examples/diesel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
4 changes: 1 addition & 3 deletions examples/postgres-actix-web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 1 addition & 3 deletions examples/postgres-benchmark/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
4 changes: 1 addition & 3 deletions examples/postgres-hyper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
4 changes: 1 addition & 3 deletions examples/readme/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/redis-actix-web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
5 changes: 4 additions & 1 deletion lapin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down Expand Up @@ -63,7 +65,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- First release

<!-- next-url -->
[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
Expand Down
4 changes: 2 additions & 2 deletions lapin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <michael.jung@terreon.de>"]
Expand All @@ -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 }
Expand Down
9 changes: 6 additions & 3 deletions memcached/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand All @@ -27,7 +29,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial release.

<!-- next-url -->
[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
4 changes: 2 additions & 2 deletions memcached/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deadpool-memcached"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
rust-version = "1.75"
authors = [
Expand All @@ -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"] }
Expand Down
5 changes: 4 additions & 1 deletion postgres/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down Expand Up @@ -195,7 +197,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- First release

<!-- next-url -->
[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
Expand Down
4 changes: 2 additions & 2 deletions postgres/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <michael.jung@terreon.de>"]
Expand All @@ -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 = [
Expand Down
5 changes: 4 additions & 1 deletion r2d2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand All @@ -30,7 +32,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- First release

<!-- next-url -->
[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
6 changes: 3 additions & 3 deletions r2d2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <michael.jung@terreon.de>"]
Expand All @@ -22,13 +22,13 @@ 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" }
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"
5 changes: 4 additions & 1 deletion redis/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -150,7 +152,8 @@ Release of 0.6 and 0.7 with the following feature backported:
- First release

<!-- next-url -->
[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
Expand Down
4 changes: 2 additions & 2 deletions redis/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deadpool-redis"
version = "0.14.0"
version = "0.15.0"
edition = "2021"
rust-version = "1.75"
authors = [
Expand All @@ -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"] }
Expand Down
5 changes: 4 additions & 1 deletion sqlite/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -54,7 +56,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- First release

<!-- next-url -->
[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
Expand Down
4 changes: 2 additions & 2 deletions sqlite/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <michael.jung@terreon.de>"]
Expand All @@ -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" }
Expand Down

0 comments on commit 957e126

Please sign in to comment.