Skip to content

Commit

Permalink
feat: release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Fyko committed Nov 27, 2023
1 parent daa1f00 commit 2b22cb4
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 23 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 @@ -15,9 +15,9 @@ homepage = "https://github.com/trufflehq/scyllax#readme"
readme = "README.md"

[workspace.dependencies]
scyllax-macros = { verison = "0.1.8-alpha", path = "./scyllax-macros" }
scyllax-macros-core = { verison = "0.1.9-alpha.4", path = "./scyllax-macros-core" }
scyllax-parser = { verison = "0.1.9-alpha.4", path = "./scyllax-parser" }
scyllax-macros = { verison = "0.1.0", path = "./scyllax-macros" }
scyllax-macros-core = { verison = "0.1.0", path = "./scyllax-macros-core" }
scyllax-parser = { verison = "0.1.0", path = "./scyllax-parser" }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "json", "tracing-log", "parking_lot"] }
tokio = { version = "1", features = ["full", "tracing"] }
Expand Down
2 changes: 1 addition & 1 deletion book/src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Additionally, while in alpha, there is no `tracing` flag, so you must also insta

```toml
scylla = "0.9"
scyllax = "0.1.8-alpha"
scyllax = "0.1.0"
tracing = "0.1"
```

Expand Down
4 changes: 2 additions & 2 deletions book/src/cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ The CLI is still in devleopment!
# Installation
## [cargo-binstall](https://github.com/cargo-bins/cargo-binstall) (recommended)
```console
$ cargo binstall -y [email protected].11-alpha.2
$ cargo binstall -y [email protected].0
```
## [cargo install](https://doc.rust-lang.org/cargo/commands/cargo-install.html)
```console
$ cargo install [email protected].11-alpha.2
$ cargo install [email protected].0
```
2 changes: 1 addition & 1 deletion example/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "example"
description = "an example using scyllax"
version = "0.1.9-alpha.4"
version = "0.1.0"
license.workspace = true
edition.workspace = true
authors.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions scyllax-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "scyllax-cli"
description = "The CLI for scyllax -- mainly managing migrations"
version = "0.1.11-alpha.2"
version = "0.1.0"
license.workspace = true
edition.workspace = true
authors.workspace = true
Expand All @@ -23,7 +23,7 @@ url = { version = "2.5.0", default-features = false }
async-trait = "0.1"
console = "0.15.7"
scylla.workspace = true
scyllax = { version = "0.1.11-alpha", path = "../scyllax" }
scyllax = { version = "0.1.0", path = "../scyllax" }
serde_json = "1.0.108"
serde = { version = "1.0.193", features = ["derive"] }
tracing-subscriber.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions scyllax-macros-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "scyllax-macros-core"
description = "Core macro impl for scyllax"
version = "0.1.11-alpha"
version = "0.1.0"
license.workspace = true
edition.workspace = true
authors.workspace = true
Expand All @@ -15,5 +15,5 @@ convert_case = "0.6.0"
darling = { version = "0.20", features = ["suggestions"] }
proc-macro2 = "1"
quote = "1"
scyllax-parser = { path = "../scyllax-parser", version = "0.1.11-alpha" }
scyllax-parser = { path = "../scyllax-parser", version = "0.1.0" }
syn = { version = "2", features = ["full", "derive", "extra-traits"] }
4 changes: 2 additions & 2 deletions scyllax-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "scyllax-macros"
description = "Macros for scyllax"
version = "0.1.11-alpha"
version = "0.1.0"
license.workspace = true
edition.workspace = true
authors.workspace = true
Expand All @@ -13,4 +13,4 @@ readme = "../README.md"
proc-macro = true

[dependencies]
scyllax-macros-core = { path = "../scyllax-macros-core", version = "0.1.11-alpha" }
scyllax-macros-core = { path = "../scyllax-macros-core", version = "0.1.0" }
2 changes: 1 addition & 1 deletion scyllax-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "scyllax-parser"
description = "A parser for CQL queries"
version = "0.1.11-alpha"
version = "0.1.0"
license.workspace = true
edition.workspace = true
repository.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions scyllax/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "scyllax"
readme = "../README.md"
description = "A SQLx and Discord inspired query system for Scylla"
version = "0.1.11-alpha"
version = "0.1.0"
license.workspace = true
edition.workspace = true
authors.workspace = true
Expand All @@ -15,8 +15,8 @@ getrandom = "0.2"
mac_address = "1"
once_cell = "1"
scylla.workspace = true
scyllax-macros = { version = "0.1.11-alpha", path = "../scyllax-macros" }
scyllax-macros-core = { version = "0.1.11-alpha", path = "../scyllax-macros-core" }
scyllax-macros = { version = "0.1.0", path = "../scyllax-macros" }
scyllax-macros-core = { version = "0.1.0", path = "../scyllax-macros-core" }
thiserror = "1"
tokio.workspace = true
tracing.workspace = true
Expand Down

0 comments on commit 2b22cb4

Please sign in to comment.