Skip to content

Commit 9ce9c6b

Browse files
committed
v0.9.0
Release notes: - Remove `simd` from `cubing` in the `[dependencies]` section. - Print a URL when `twsearch solve-known-puzzle` completes (opt-out). - Change `--print-link` arg for `scramble-finder` to default to true, and take `true`/`false` as args. - Implement derived scrambles (subject to implementation changes.
1 parent e308a63 commit 9ce9c6b

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ members = [
1111
default-members = ["src/rs-cli"]
1212

1313
[workspace.package]
14-
version = "0.8.5-dev"
14+
version = "0.9.0"
1515
license = "MPL-2.0"
1616
edition = "2021"
1717
repository = "https://github.com/cubing/twsearch"

src/rs-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ rand = "0.9.2"
1717
serde = "1.0.228"
1818
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread"] }
1919
tower-http = { version = "0.6.6", features = ["cors"] }
20-
twsearch = { path = "../rs", version = "0.8.5-dev" }
20+
twsearch = { path = "../rs", version = "=0.9.0" }
2121

2222

2323
[[bin]]

src/rs-ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ default = []
1111

1212
[dependencies]
1313
cbindgen = "0.29.2"
14-
twsearch = { path = "../rs", version = "0.8.5-dev" }
14+
twsearch = { path = "../rs", version = "=0.9.0" }
1515

1616
[lib]
1717
path = "./lib.rs"

src/rs-wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description = "Twizzle Search WASM — WASM build of twsearch for `cubing.js`"
99
default = []
1010

1111
[dependencies]
12-
twsearch = { path = "../rs", version = "0.8.5-dev" }
12+
twsearch = { path = "../rs", version = "=0.9.0" }
1313
getrandom = { version = "0.3.4", features = [
1414
# We don't use `getrandom` directly (only through `rand`), but this explicitly including the dependency here is the easiest way to enable the `wasm_js` feature that we need for WASM compat.
1515
"wasm_js",

0 commit comments

Comments
 (0)