Skip to content

Commit ac9aeb2

Browse files
committed
Prepare v0.2.3
1 parent c4b221f commit ac9aeb2

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ members = [
88

99
[package]
1010
name = "sqlx"
11-
version = "0.2.2"
11+
version = "0.2.3"
1212
license = "MIT OR Apache-2.0"
1313
readme = "README.md"
1414
repository = "https://github.com/launchbadge/sqlx"
@@ -45,8 +45,8 @@ chrono = [ "sqlx-core/chrono", "sqlx-macros/chrono" ]
4545
uuid = [ "sqlx-core/uuid", "sqlx-macros/uuid" ]
4646

4747
[dependencies]
48-
sqlx-core = { version = "0.2.2", path = "sqlx-core", default-features = false }
49-
sqlx-macros = { version = "0.2.2", path = "sqlx-macros", default-features = false, optional = true }
48+
sqlx-core = { version = "0.2.3", path = "sqlx-core", default-features = false }
49+
sqlx-macros = { version = "0.2.3", path = "sqlx-macros", default-features = false, optional = true }
5050

5151
[dev-dependencies]
5252
anyhow = "1.0.26"

sqlx-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlx-core"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
repository = "https://github.com/launchbadge/sqlx"
55
description = "Core of SQLx, the rust SQL toolkit. Not intended to be used directly."
66
license = "MIT OR Apache-2.0"

sqlx-macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sqlx-macros"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
repository = "https://github.com/launchbadge/sqlx"
55
description = "Macros for SQLx, the rust SQL toolkit. Not intended to be used directly."
66
license = "MIT OR Apache-2.0"
@@ -35,7 +35,7 @@ tokio = { version = "0.2.9", default-features = false, features = [ "rt-threaded
3535
dotenv = { version = "0.15.0", default-features = false }
3636
futures = { version = "0.3.1", default-features = false, features = [ "executor" ] }
3737
proc-macro2 = { version = "1.0.7", default-features = false }
38-
sqlx = { version = "0.2.2", default-features = false, path = "../sqlx-core", package = "sqlx-core" }
38+
sqlx = { version = "0.2.3", default-features = false, path = "../sqlx-core", package = "sqlx-core" }
3939
syn = { version = "1.0.13", default-features = false, features = [ "full" ] }
4040
quote = { version = "1.0.2", default-features = false }
4141
url = { version = "2.1.1", default-features = false }

0 commit comments

Comments
 (0)