Skip to content

Commit

Permalink
release: bump to 0.1.9-alpha
Browse files Browse the repository at this point in the history
chore: release
  • Loading branch information
Fyko committed Oct 6, 2023
1 parent e4ff882 commit f80fea0
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 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 @@ -3,7 +3,7 @@ members = ["example", "scyllax", "scyllax-cli", "scyllax-macros", "scyllax-macro
resolver = "2"

[workspace.package]
version = "0.1.8-alpha"
version = "0.1.9-alpha"
license = "MIT OR Apache-2.0"
edition = "2021"
repository = "https://github.com/trufflehq/scyllax"
Expand All @@ -17,8 +17,8 @@ readme = "README.md"

[workspace.dependencies]
scyllax-macros = { verison = "0.1.8-alpha", path = "./scyllax-macros" }
scyllax-macros-core = { verison = "0.1.8-alpha", path = "./scyllax-macros-core" }
scyllax-parser = { verison = "0.1.8-alpha", path = "./scyllax-parser" }
scyllax-macros-core = { verison = "0.1.9-alpha", path = "./scyllax-macros-core" }
scyllax-parser = { verison = "0.1.9-alpha", path = "./scyllax-parser" }
anyhow = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "json", "tracing-log", "parking_lot"] }
Expand Down
2 changes: 1 addition & 1 deletion scyllax-macros-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ anyhow.workspace = true
darling = { version = "0.20", features = ["suggestions"] }
proc-macro2 = "1"
quote = "1"
scyllax-parser = { path = "../scyllax-parser", version = "0.1.8-alpha" }
scyllax-parser = { path = "../scyllax-parser", version = "0.1.9-alpha" }
syn = { version = "2", features = ["full", "derive", "extra-traits"] }
2 changes: 1 addition & 1 deletion scyllax-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ readme = "../README.md"
proc-macro = true

[dependencies]
scyllax-macros-core.workspace = true
scyllax-macros-core = { path = "../scyllax-macros-core", version = "0.1.9-alpha" }
6 changes: 3 additions & 3 deletions scyllax/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scyllax"
readme = "README.md"
readme = "../README.md"
description = "A SQLx and Discord inspired query system for Scylla"
version.workspace = true
license.workspace = true
Expand All @@ -16,8 +16,8 @@ getrandom = "0.2"
mac_address = "1"
once_cell = "1"
scylla.workspace = true
scyllax-macros = { version = "0.1.8-alpha", path = "../scyllax-macros" }
scyllax-macros-core = { version = "0.1.8-alpha", path = "../scyllax-macros-core" }
scyllax-macros = { version = "0.1.9-alpha", path = "../scyllax-macros" }
scyllax-macros-core = { version = "0.1.9-alpha", path = "../scyllax-macros-core" }
thiserror = "1"
tracing.workspace = true
uuid.workspace = true

0 comments on commit f80fea0

Please sign in to comment.