Skip to content

Commit

Permalink
Prepare a diesel_async 0.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
weiznich committed May 26, 2023
1 parent 67c677e commit c61deaf
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All user visible changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/), as described
for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/text/1105-api-evolution.md)

## [0.3.0] - 2023-05-26

* Compatibility with diesel 2.1

## [0.2.2] - 2023-04-14

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

[0.1.1]: https://github.com/weiznich/diesel_async/compare/v0.1.0...v0.1.1
[0.2.0]: https://github.com/weiznich/diesel_async/compare/v0.1.1...v0.2.0
[0.2.1]: https://github.com/weiznich/diesel_async/compare/v0.2.0...v0.2.1
[0.2.2]: https://github.com/weiznich/diesel_async/compare/v0.2.1...v0.2.2
[0.3.0]: https://github.com/weiznich/diesel_async/compare/v0.2.0...v0.3.0
7 changes: 2 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "diesel-async"
version = "0.2.2"
version = "0.3.0"
authors = ["Georg Semmler <[email protected]>"]
edition = "2018"
autotests = false
Expand All @@ -13,7 +13,7 @@ description = "An async extension for Diesel the safe, extensible ORM and Query
rust-version = "1.65.0"

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

[patch.crates-io]
diesel = { git = "https://github.com/diesel-rs/diesel", rev = "b878fed" }

[workspace]
members = [
".",
Expand Down
4 changes: 2 additions & 2 deletions examples/postgres/pooled-with-rustls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
diesel = { version = "2.0.2", default-features = false, features = ["postgres"] }
diesel-async = { version = "0.2.0", path = "../../../", features = ["bb8", "postgres"] }
diesel = { version = "2.1.0", default-features = false, features = ["postgres"] }
diesel-async = { version = "0.3.0", path = "../../../", features = ["bb8", "postgres"] }
futures-util = "0.3.21"
rustls = "0.20.8"
rustls-native-certs = "0.6.2"
Expand Down

0 comments on commit c61deaf

Please sign in to comment.