Skip to content

Commit 60b0120

Browse files
committed
chore: release
1 parent b919b7d commit 60b0120

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

Cargo.lock

Lines changed: 5 additions & 5 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
@@ -15,9 +15,9 @@ homepage = "https://github.com/trufflehq/scyllax#readme"
1515
readme = "README.md"
1616

1717
[workspace.dependencies]
18-
scyllax-macros = { verison = "0.2.0-alpha", path = "./scyllax-macros" }
19-
scyllax-macros-core = { verison = "0.2.0-alpha", path = "./scyllax-macros-core" }
20-
scyllax-parser = { verison = "0.2.0-alpha", path = "./scyllax-parser" }
18+
scyllax-macros = { verison = "0.2.0", path = "./scyllax-macros" }
19+
scyllax-macros-core = { verison = "0.2.0", path = "./scyllax-macros-core" }
20+
scyllax-parser = { verison = "0.2.0", path = "./scyllax-parser" }
2121
tracing = "0.1"
2222
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "json", "tracing-log", "parking_lot"] }
2323
tokio = { version = "1", features = ["full", "tracing"] }

scyllax-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "scyllax-cli"
33
description = "The CLI for scyllax -- mainly managing migrations"
4-
version = "0.2.0-alpha.1"
4+
version = "0.2.0"
55
license.workspace = true
66
edition.workspace = true
77
authors.workspace = true
@@ -23,7 +23,7 @@ url = { version = "2.5.0", default-features = false }
2323
async-trait = "0.1"
2424
console = "0.15.7"
2525
scylla.workspace = true
26-
scyllax = { version = "0.2.0-alpha.1", path = "../scyllax" }
26+
scyllax = { version = "0.2.0", path = "../scyllax" }
2727
serde_json = "1.0.108"
2828
serde = { version = "1.0.193", features = ["derive"] }
2929
tracing-subscriber.workspace = true

scyllax-macros-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "scyllax-macros-core"
33
description = "Core macro impl for scyllax"
4-
version = "0.2.0-alpha.3"
4+
version = "0.2.0"
55
license.workspace = true
66
edition.workspace = true
77
authors.workspace = true
@@ -15,5 +15,5 @@ convert_case = "0.6.0"
1515
darling = { version = "0.20", features = ["suggestions"] }
1616
proc-macro2 = "1"
1717
quote = "1"
18-
scyllax-parser = { path = "../scyllax-parser", version = "0.2.0-alpha" }
18+
scyllax-parser = { path = "../scyllax-parser", version = "0.2.0" }
1919
syn = { version = "2", features = ["full", "derive", "extra-traits"] }

scyllax-macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "scyllax-macros"
33
description = "Macros for scyllax"
4-
version = "0.2.0-alpha.3"
4+
version = "0.2.0"
55
license.workspace = true
66
edition.workspace = true
77
authors.workspace = true
@@ -13,4 +13,4 @@ readme = "../README.md"
1313
proc-macro = true
1414

1515
[dependencies]
16-
scyllax-macros-core = { path = "../scyllax-macros-core", version = "0.2.0-alpha.3" }
16+
scyllax-macros-core = { path = "../scyllax-macros-core", version = "0.2.0" }

scyllax-parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "scyllax-parser"
33
description = "A parser for CQL queries"
4-
version = "0.2.0-alpha"
4+
version = "0.2.0"
55
license.workspace = true
66
edition.workspace = true
77
repository.workspace = true

scyllax/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "scyllax"
33
readme = "../README.md"
44
description = "A SQLx and Discord inspired query system for Scylla"
5-
version = "0.2.0-alpha.3"
5+
version = "0.2.0"
66
license.workspace = true
77
edition.workspace = true
88
authors.workspace = true
@@ -15,8 +15,8 @@ getrandom = "0.2"
1515
mac_address = "1"
1616
once_cell = "1"
1717
scylla.workspace = true
18-
scyllax-macros = { version = "0.2.0-alpha.3", path = "../scyllax-macros" }
19-
scyllax-macros-core = { version = "0.2.0-alpha.3", path = "../scyllax-macros-core" }
18+
scyllax-macros = { version = "0.2.0", path = "../scyllax-macros" }
19+
scyllax-macros-core = { version = "0.2.0", path = "../scyllax-macros-core" }
2020
thiserror = "1"
2121
tokio.workspace = true
2222
tracing.workspace = true

0 commit comments

Comments
 (0)