Skip to content

Commit

Permalink
bump to v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
DDoSolitary committed May 30, 2021
1 parent 8509a0a commit fe0bd40
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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,6 +1,6 @@
[package]
name = "yasfw"
version = "0.1.0"
version = "0.1.1"
authors = ["DDoSolitary <[email protected]>"]
edition = "2018"
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ fn get_version() -> String {
.map_err(|e| e.to_string())
.and_then(|output| {
if output.status.success() {
Ok(String::from_utf8(output.stdout).unwrap()[1..].to_owned())
Ok(String::from_utf8(output.stdout).unwrap().trim()[1..].to_owned())
} else {
Err(format!("git describe command exited with {:?}", output.status.code()))
}
Expand Down

0 comments on commit fe0bd40

Please sign in to comment.