Skip to content

Commit

Permalink
Publish v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
CryZe committed Jun 11, 2017
1 parent 897e005 commit 6591a29
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "livesplit-core"
version = "0.5.1"
version = "0.6.0"
authors = ["Christopher Serr <[email protected]>"]
documentation = "https://docs.rs/livesplit-core/"
repository = "https://github.com/CryZe/livesplit-core"
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.5.1"
version = "0.6.0"
authors = ["Christopher Serr <[email protected]>"]

[dependencies]
Expand Down
14 changes: 13 additions & 1 deletion ci/before_deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,19 @@ main() {

test -f Cargo.lock || cargo generate-lockfile

cross rustc -p livesplit-core-capi --target $TARGET --release
case $TARGET in
asmjs-unknown-emscripten)
cross build -p livesplit --target $TARGET --release
;;
wasm32-unknown-emscripten)
rm target/wasm32-unknown-emscripten/release/deps/*.wasm 2>/dev/null || :
rm target/wasm32-unknown-emscripten/release/deps/*.js 2>/dev/null || :
cross build -p livesplit --target $TARGET --release
;;
*)
cross rustc -p livesplit-core-capi --target $TARGET --release
;;
esac

(cd capi/bind_gen && cargo run)

Expand Down

0 comments on commit 6591a29

Please sign in to comment.