Skip to content

Commit

Permalink
Release v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
CryZe committed Sep 22, 2018
1 parent 1ee1680 commit 6ac4f94
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "livesplit-core"
version = "0.9.0"
version = "0.10.0"
authors = ["Christopher Serr <[email protected]>"]
documentation = "https://docs.rs/livesplit-core/"
repository = "https://github.com/LiveSplit/livesplit-core"
Expand Down Expand Up @@ -34,7 +34,7 @@ byteorder = "1.2.3"
derive_more = "0.12.0"
image = { version = "0.20.0", features = ["png_codec"], default-features = false }
indexmap = { version = "1.0.1", default-features = false, features = ["serde-1"] }
livesplit-hotkey = { path = "hotkey", version = "0.3.0" }
livesplit-hotkey = { path = "hotkey", version = "0.4.0" }
odds = { version = "0.3.1", features = ["std-vec"], default-features = false }
ordered-float = "1.0.0"
palette = { version = "0.4.0", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion capi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "livesplit-core-capi"
version = "0.8.1"
version = "0.10.0"
authors = ["Christopher Serr <[email protected]>"]

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions ci/before_deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ main() {
case $TARGET in
asmjs-unknown-emscripten)
cross build -p livesplit --target $TARGET --release
cat js/exports.js >> target/$TARGET/release/livesplit*.js*
cat capi/js/exports.js >> target/$TARGET/release/livesplit*.js*
;;
wasm32-unknown-emscripten)
rm target/$TARGET/release/deps/*.wasm 2>/dev/null || :
rm target/$TARGET/release/deps/*.js 2>/dev/null || :
cross build -p livesplit --target $TARGET --release
cat js/exports.js >> target/$TARGET/release/livesplit*.js*
cat capi/js/exports.js >> target/$TARGET/release/livesplit*.js*
;;
wasm32-unknown-unknown)
cross build -p cdylib --target $TARGET --release
Expand Down
2 changes: 1 addition & 1 deletion hotkey/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "livesplit-hotkey"
version = "0.3.0"
version = "0.4.0"
authors = ["Christopher Serr <[email protected]>"]
documentation = "https://docs.rs/livesplit-hotkey/"
repository = "https://github.com/LiveSplit/livesplit-core/tree/master/hotkey"
Expand Down

0 comments on commit 6ac4f94

Please sign in to comment.