Skip to content

Commit

Permalink
v0.13.9
Browse files Browse the repository at this point in the history
Release notes:

- [alg-cli] Accept `--stdin` instead of requiring an alg as an argument
- [alg-cli] Add a `parse` subcommand`.
  • Loading branch information
lgarron committed Nov 1, 2024
1 parent 47c9b20 commit 45ba01b
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ default-members = [
]

[workspace.package]
version = "0.13.8"
version = "0.13.9"
license = "MPL-2.0"
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion alg_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ readme = "../README.md"
[dependencies]
clap = { version = "4.1.8", features = ["derive"] }
clap_complete = "4.3.2"
cubing = { version = "=0.13.8", path = "../cubing" }
cubing = { version = "=0.13.9", path = "../cubing" }

[[bin]]
name = "alg"
Expand Down
4 changes: 2 additions & 2 deletions cubing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ keywords = ["cubing", "puzzle", "rubik", "solving", "WCA"]
readme = "../README.md"

[dependencies]
cubing_core = { version = "=0.13.8", path = "../cubing_core" }
cubing_macros = { version = "=0.13.8", path = "../cubing_macros" }
cubing_core = { version = "=0.13.9", path = "../cubing_core" }
cubing_macros = { version = "=0.13.9", path = "../cubing_macros" }

[dev-dependencies]
clap = { version = "4.1.8", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion cubing_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ keywords = ["cubing", "puzzle", "rubik", "solving", "WCA"]
readme = "README.md"

[dependencies]
cubing_core = { version = "=0.13.8", path = "../cubing_core" }
cubing_core = { version = "=0.13.9", path = "../cubing_core" }
quote = "1.0.33"
syn = "2.0.39"

Expand Down

0 comments on commit 45ba01b

Please sign in to comment.