Skip to content

Commit

Permalink
This is 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
svenstaro committed Jan 17, 2018
1 parent b68ea4c commit 878ff15
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ script:
- if [[ $TARGET = "wasm32-unknown-emscripten" ]]; then cargo web build --verbose --release --target-webasm-emscripten; fi

before_deploy:
- if [[ -n $TARGET && $TARGET != "wasm32-unknown-emscripten" ]]; then cp -a target/$TARGET/release/$BIN_NAME $PROPER_NAME && strip $PROPER_NAME && upx $PROPER_NAME fi
- if [[ -n $TARGET && $TARGET != "wasm32-unknown-emscripten" ]]; then cp -a target/$TARGET/release/$BIN_NAME $PROPER_NAME && strip $PROPER_NAME && upx $PROPER_NAME; fi
- if [[ $TARGET = "wasm32-unknown-emscripten" ]]; then cp target/wasm32-unknown-emscripten/release/genact.{js,wasm} static/; fi

deploy:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "genact"
description = "A nonsense activity generator"
version = "0.2.1"
version = "0.2.2"
repository = "https://github.com/svenstaro/genact"
authors = ["Sven-Hendrik Haase <svenstaro@gmail.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ fn parse_args(all_modules: Vec<&str>) -> Vec<String> {
use std::process;

let app = App::new("genact")
.version("0.2.1")
.version("0.2.2")
.author("Sven-Hendrik Haase <svenstaro@gmail.com>")
.about("A nonsense activity generator")
.arg(
Expand Down

0 comments on commit 878ff15

Please sign in to comment.