Skip to content

Commit

Permalink
release: 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mehcode committed Feb 4, 2021
1 parent efccd6c commit cbe8207
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ members = [

[package]
name = "sqlx"
version = "0.5.0"
version = "0.5.1"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/launchbadge/sqlx"
Expand Down Expand Up @@ -94,8 +94,8 @@ bstr = [ "sqlx-core/bstr" ]
git2 = [ "sqlx-core/git2" ]

[dependencies]
sqlx-core = { version = "0.5", path = "sqlx-core", default-features = false }
sqlx-macros = { version = "0.5", path = "sqlx-macros", default-features = false, optional = true }
sqlx-core = { version = "0.5.1", path = "sqlx-core", default-features = false }
sqlx-macros = { version = "0.5.1", path = "sqlx-macros", default-features = false, optional = true }

[dev-dependencies]
anyhow = "1.0.31"
Expand Down
4 changes: 2 additions & 2 deletions sqlx-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sqlx-cli"
version = "0.5.0"
version = "0.5.1"
description = "Command-line utility for SQLx, the Rust SQL toolkit."
edition = "2018"
readme = "README.md"
Expand All @@ -27,7 +27,7 @@ path = "src/bin/cargo-sqlx.rs"
[dependencies]
dotenv = "0.15"
tokio = { version = "1.0.1", features = ["macros", "rt", "rt-multi-thread"] }
sqlx = { version = "0.5", path = "..", default-features = false, features = [ "runtime-async-std-native-tls", "migrate", "any", "offline" ] }
sqlx = { version = "0.5.1", path = "..", default-features = false, features = [ "runtime-async-std-native-tls", "migrate", "any", "offline" ] }
futures = "0.3"
clap = "=3.0.0-beta.2"
chrono = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion sqlx-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sqlx-core"
version = "0.5.0"
version = "0.5.1"
repository = "https://github.com/launchbadge/sqlx"
description = "Core of SQLx, the rust SQL toolkit. Not intended to be used directly."
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions sqlx-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sqlx-macros"
version = "0.5.0"
version = "0.5.1"
repository = "https://github.com/launchbadge/sqlx"
description = "Macros for SQLx, the rust SQL toolkit. Not intended to be used directly."
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -60,7 +60,7 @@ heck = "0.3.1"
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-core = { version = "0.5.1", default-features = false, path = "../sqlx-core" }
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 }
Expand Down

0 comments on commit cbe8207

Please sign in to comment.