Skip to content

Commit

Permalink
Prepare a 0.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
weiznich committed Sep 1, 2023
1 parent 755198a commit 0181c09
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ 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:/rust-lang/rfcs/blob/master/text/1105-api-evolution.md)

## Unreleased
## [0.4.0] - 2023-09-01

* Add a `AsyncConnectionWrapper` type to turn a `diesel_async::AsyncConnection` into a `diesel::Connection`. This might be used to execute migrations via `diesel_migrations`.
* Add some connection pool configurations to specify how connections
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 = "diesel-async"
version = "0.3.2"
version = "0.4.0"
authors = ["Georg Semmler <[email protected]>"]
edition = "2021"
autotests = false
Expand Down
2 changes: 1 addition & 1 deletion examples/postgres/pooled-with-rustls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"

[dependencies]
diesel = { version = "2.1.0", default-features = false, features = ["postgres"] }
diesel-async = { version = "0.3.0", path = "../../../", features = ["bb8", "postgres"] }
diesel-async = { version = "0.4.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 0181c09

Please sign in to comment.