From 6ac4f94778c1c519ea7d9fc4f2bdb7a22bafb0a1 Mon Sep 17 00:00:00 2001 From: Christopher Serr Date: Sat, 22 Sep 2018 12:29:27 +0200 Subject: [PATCH] Release v0.10.0 --- Cargo.toml | 4 ++-- capi/Cargo.toml | 2 +- ci/before_deploy.sh | 4 ++-- hotkey/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2c91788e..cf01004f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "livesplit-core" -version = "0.9.0" +version = "0.10.0" authors = ["Christopher Serr "] documentation = "https://docs.rs/livesplit-core/" repository = "https://github.com/LiveSplit/livesplit-core" @@ -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 } diff --git a/capi/Cargo.toml b/capi/Cargo.toml index 6488074c..3cf56a84 100644 --- a/capi/Cargo.toml +++ b/capi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "livesplit-core-capi" -version = "0.8.1" +version = "0.10.0" authors = ["Christopher Serr "] [dependencies] diff --git a/ci/before_deploy.sh b/ci/before_deploy.sh index 129cc9c1..603e180c 100644 --- a/ci/before_deploy.sh +++ b/ci/before_deploy.sh @@ -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 diff --git a/hotkey/Cargo.toml b/hotkey/Cargo.toml index 01b22fee..00bad338 100644 --- a/hotkey/Cargo.toml +++ b/hotkey/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "livesplit-hotkey" -version = "0.3.0" +version = "0.4.0" authors = ["Christopher Serr "] documentation = "https://docs.rs/livesplit-hotkey/" repository = "https://github.com/LiveSplit/livesplit-core/tree/master/hotkey"