Skip to content

Commit 6ac4f94

Browse files
committed
Release v0.10.0
1 parent 1ee1680 commit 6ac4f94

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "livesplit-core"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
authors = ["Christopher Serr <[email protected]>"]
55
documentation = "https://docs.rs/livesplit-core/"
66
repository = "https://github.com/LiveSplit/livesplit-core"
@@ -34,7 +34,7 @@ byteorder = "1.2.3"
3434
derive_more = "0.12.0"
3535
image = { version = "0.20.0", features = ["png_codec"], default-features = false }
3636
indexmap = { version = "1.0.1", default-features = false, features = ["serde-1"] }
37-
livesplit-hotkey = { path = "hotkey", version = "0.3.0" }
37+
livesplit-hotkey = { path = "hotkey", version = "0.4.0" }
3838
odds = { version = "0.3.1", features = ["std-vec"], default-features = false }
3939
ordered-float = "1.0.0"
4040
palette = { version = "0.4.0", default-features = false }

capi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "livesplit-core-capi"
3-
version = "0.8.1"
3+
version = "0.10.0"
44
authors = ["Christopher Serr <[email protected]>"]
55

66
[dependencies]

ci/before_deploy.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ main() {
2020
case $TARGET in
2121
asmjs-unknown-emscripten)
2222
cross build -p livesplit --target $TARGET --release
23-
cat js/exports.js >> target/$TARGET/release/livesplit*.js*
23+
cat capi/js/exports.js >> target/$TARGET/release/livesplit*.js*
2424
;;
2525
wasm32-unknown-emscripten)
2626
rm target/$TARGET/release/deps/*.wasm 2>/dev/null || :
2727
rm target/$TARGET/release/deps/*.js 2>/dev/null || :
2828
cross build -p livesplit --target $TARGET --release
29-
cat js/exports.js >> target/$TARGET/release/livesplit*.js*
29+
cat capi/js/exports.js >> target/$TARGET/release/livesplit*.js*
3030
;;
3131
wasm32-unknown-unknown)
3232
cross build -p cdylib --target $TARGET --release

hotkey/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "livesplit-hotkey"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Christopher Serr <[email protected]>"]
55
documentation = "https://docs.rs/livesplit-hotkey/"
66
repository = "https://github.com/LiveSplit/livesplit-core/tree/master/hotkey"

0 commit comments

Comments
 (0)