Skip to content

Commit 62e1df5

Browse files
committed
Prepare v0.2.0
1 parent 1bb6487 commit 62e1df5

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.1.4"
11+
version = "0.2.0"
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.1.4", path = "sqlx-core" }
49-
sqlx-macros = { version = "0.1.1", path = "sqlx-macros", optional = true }
48+
sqlx-core = { version = "0.2.0", path = "sqlx-core" }
49+
sqlx-macros = { version = "0.2.0", path = "sqlx-macros", 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.1.4"
3+
version = "0.2.0"
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.1.1"
3+
version = "0.2.0"
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"
@@ -36,7 +36,7 @@ once_cell = { version = "1.3", optional = true }
3636
dotenv = { version = "0.15.0", default-features = false }
3737
futures = { version = "0.3.1", default-features = false }
3838
proc-macro2 = { version = "1.0.6", default-features = false }
39-
sqlx = { version = "0.1.1", default-features = false, path = "../sqlx-core", package = "sqlx-core" }
39+
sqlx = { version = "0.2.0", default-features = false, path = "../sqlx-core", package = "sqlx-core" }
4040
syn = { version = "1.0.11", default-features = false, features = [ "full" ] }
4141
quote = { version = "1.0.2", default-features = false }
4242
url = { version = "2.1.0", default-features = false }

0 commit comments

Comments
 (0)