Skip to content

Commit efccd6c

Browse files
committed
chore: update sqlx-rt to 0.3
1 parent 7127357 commit efccd6c

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.5.1 - 2020-02-04
9+
10+
- Update sqlx-rt to 0.3.
11+
812
## 0.5.0 - 2020-02-04
913

1014
### Changes

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sqlx-bench/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ criterion = "0.3.3"
2121
dotenv = "0.15.0"
2222
once_cell = "1.4"
2323
sqlx = { version = "0.5", path = "../", default-features = false }
24-
sqlx-rt = { version = "0.2.0", path = "../sqlx-rt", default-features = false }
24+
sqlx-rt = { version = "0.3.0", path = "../sqlx-rt", default-features = false }
2525

2626
[[bench]]
2727
name = "pg_pool"

sqlx-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ offline = [ "serde", "either/serde" ]
5555
[dependencies]
5656
ahash = "0.6.2"
5757
atoi = "0.4.0"
58-
sqlx-rt = { path = "../sqlx-rt", version = "0.2.0" }
58+
sqlx-rt = { path = "../sqlx-rt", version = "0.3.0" }
5959
base64 = { version = "0.13.0", default-features = false, optional = true, features = [ "std" ] }
6060
bigdecimal_ = { version = "0.2.0", optional = true, package = "bigdecimal" }
6161
rust_decimal = { version = "1.8.1", optional = true }

sqlx-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ either = "1.5.3"
6161
once_cell = { version = "1.5.2", optional = true }
6262
proc-macro2 = { version = "1.0.9", default-features = false }
6363
sqlx-core = { version = "0.5", default-features = false, path = "../sqlx-core" }
64-
sqlx-rt = { version = "0.2.0", default-features = false, path = "../sqlx-rt" }
64+
sqlx-rt = { version = "0.3.0", default-features = false, path = "../sqlx-rt" }
6565
serde = { version = "1.0.111", features = ["derive"], optional = true }
6666
serde_json = { version = "1.0.30", features = ["preserve_order"], optional = true }
6767
sha2 = { version = "0.9.1", optional = true }

0 commit comments

Comments
 (0)