Skip to content

Commit c61deaf

Browse files
committed
Prepare a diesel_async 0.3 release
1 parent 67c677e commit c61deaf

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All user visible changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](http://semver.org/), as described
55
for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/text/1105-api-evolution.md)
66

7+
## [0.3.0] - 2023-05-26
8+
9+
* Compatibility with diesel 2.1
10+
711
## [0.2.2] - 2023-04-14
812

913
* Dependency updates for `mysql-async` to allow newer versions
@@ -35,3 +39,6 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
3539

3640
[0.1.1]: https://github.com/weiznich/diesel_async/compare/v0.1.0...v0.1.1
3741
[0.2.0]: https://github.com/weiznich/diesel_async/compare/v0.1.1...v0.2.0
42+
[0.2.1]: https://github.com/weiznich/diesel_async/compare/v0.2.0...v0.2.1
43+
[0.2.2]: https://github.com/weiznich/diesel_async/compare/v0.2.1...v0.2.2
44+
[0.3.0]: https://github.com/weiznich/diesel_async/compare/v0.2.0...v0.3.0

Cargo.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "diesel-async"
3-
version = "0.2.2"
3+
version = "0.3.0"
44
authors = ["Georg Semmler <[email protected]>"]
55
edition = "2018"
66
autotests = false
@@ -13,7 +13,7 @@ description = "An async extension for Diesel the safe, extensible ORM and Query
1313
rust-version = "1.65.0"
1414

1515
[dependencies]
16-
diesel = { version = "~2.0.0", default-features = false, features = ["i-implement-a-third-party-backend-and-opt-into-breaking-changes"]}
16+
diesel = { version = "~2.1.0", default-features = false, features = ["i-implement-a-third-party-backend-and-opt-into-breaking-changes"]}
1717
async-trait = "0.1.66"
1818
futures-channel = { version = "0.3.17", default-features = false, features = ["std", "sink"], optional = true }
1919
futures-util = { version = "0.3.17", default-features = false, features = ["std", "sink"] }
@@ -49,9 +49,6 @@ no-default-features = true
4949
rustc-args = ["--cfg", "doc_cfg"]
5050
rustdoc-args = ["--cfg", "doc_cfg"]
5151

52-
[patch.crates-io]
53-
diesel = { git = "https://github.com/diesel-rs/diesel", rev = "b878fed" }
54-
5552
[workspace]
5653
members = [
5754
".",

examples/postgres/pooled-with-rustls/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
diesel = { version = "2.0.2", default-features = false, features = ["postgres"] }
10-
diesel-async = { version = "0.2.0", path = "../../../", features = ["bb8", "postgres"] }
9+
diesel = { version = "2.1.0", default-features = false, features = ["postgres"] }
10+
diesel-async = { version = "0.3.0", path = "../../../", features = ["bb8", "postgres"] }
1111
futures-util = "0.3.21"
1212
rustls = "0.20.8"
1313
rustls-native-certs = "0.6.2"

0 commit comments

Comments
 (0)