Skip to content

Commit d1af2fe

Browse files
committed
Prepare v0.3.0-alpha.1
1 parent 9d9d2bb commit d1af2fe

File tree

4 files changed

+42
-42
lines changed

4 files changed

+42
-42
lines changed

Cargo.lock

Lines changed: 36 additions & 36 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
@@ -11,7 +11,7 @@ members = [
1111

1212
[package]
1313
name = "sqlx"
14-
version = "0.2.6"
14+
version = "0.3.0-alpha.1"
1515
license = "MIT OR Apache-2.0"
1616
readme = "README.md"
1717
repository = "https://github.com/launchbadge/sqlx"
@@ -50,8 +50,8 @@ chrono = [ "sqlx-core/chrono", "sqlx-macros/chrono" ]
5050
uuid = [ "sqlx-core/uuid", "sqlx-macros/uuid" ]
5151

5252
[dependencies]
53-
sqlx-core = { version = "0.2.6", path = "sqlx-core", default-features = false }
54-
sqlx-macros = { version = "0.2.5", path = "sqlx-macros", default-features = false, optional = true }
53+
sqlx-core = { version = "0.3.0-alpha.1", path = "sqlx-core", default-features = false }
54+
sqlx-macros = { version = "0.3.0-alpha.1", path = "sqlx-macros", default-features = false, optional = true }
5555

5656
[dev-dependencies]
5757
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.6"
3+
version = "0.3.0-alpha.1"
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.5"
3+
version = "0.3.0-alpha.1"
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 @@ tokio = { version = "0.2.13", default-features = false, features = [ "rt-threade
3636
dotenv = { version = "0.15.0", default-features = false }
3737
futures = { version = "0.3.4", default-features = false, features = [ "executor" ] }
3838
proc-macro2 = { version = "1.0.9", default-features = false }
39-
sqlx = { version = "0.2.6", default-features = false, path = "../sqlx-core", package = "sqlx-core" }
39+
sqlx = { version = "0.3.0-alpha.1", default-features = false, path = "../sqlx-core", package = "sqlx-core" }
4040
syn = { version = "1.0.16", default-features = false, features = [ "full" ] }
4141
quote = { version = "1.0.2", default-features = false }
4242
url = { version = "2.1.1", default-features = false }

0 commit comments

Comments
 (0)