Skip to content

Commit

Permalink
chore: update sqlx-rt to 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mehcode committed Feb 4, 2021
1 parent 7127357 commit efccd6c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.5.1 - 2020-02-04

- Update sqlx-rt to 0.3.

## 0.5.0 - 2020-02-04

### Changes
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sqlx-bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ criterion = "0.3.3"
dotenv = "0.15.0"
once_cell = "1.4"
sqlx = { version = "0.5", path = "../", default-features = false }
sqlx-rt = { version = "0.2.0", path = "../sqlx-rt", default-features = false }
sqlx-rt = { version = "0.3.0", path = "../sqlx-rt", default-features = false }

[[bench]]
name = "pg_pool"
Expand Down
2 changes: 1 addition & 1 deletion sqlx-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ offline = [ "serde", "either/serde" ]
[dependencies]
ahash = "0.6.2"
atoi = "0.4.0"
sqlx-rt = { path = "../sqlx-rt", version = "0.2.0" }
sqlx-rt = { path = "../sqlx-rt", version = "0.3.0" }
base64 = { version = "0.13.0", default-features = false, optional = true, features = [ "std" ] }
bigdecimal_ = { version = "0.2.0", optional = true, package = "bigdecimal" }
rust_decimal = { version = "1.8.1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion sqlx-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ either = "1.5.3"
once_cell = { version = "1.5.2", optional = true }
proc-macro2 = { version = "1.0.9", default-features = false }
sqlx-core = { version = "0.5", default-features = false, path = "../sqlx-core" }
sqlx-rt = { version = "0.2.0", default-features = false, path = "../sqlx-rt" }
sqlx-rt = { version = "0.3.0", default-features = false, path = "../sqlx-rt" }
serde = { version = "1.0.111", features = ["derive"], optional = true }
serde_json = { version = "1.0.30", features = ["preserve_order"], optional = true }
sha2 = { version = "0.9.1", optional = true }
Expand Down

0 comments on commit efccd6c

Please sign in to comment.