Skip to content

Commit

Permalink
Bump to version 0.9.1
Browse files Browse the repository at this point in the history
- Fix bug with website config not loading properly and defaulting to
  wrong websocket port for `player` page
- Fix bug where audio resources weren't cleaned up properly when
  navigating away from `player` page
- Upgrade yew and yew_router dependencies to use web-sys. Fixes bug
  causing wasm panic when navigating away from `player` page. Going back
  from player page now works properly.
  • Loading branch information
tarkah committed Feb 5, 2020
1 parent e13d181 commit e2f6688
Show file tree
Hide file tree
Showing 3 changed files with 3 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 = "karaoke-rs"
version = "0.9.0"
version = "0.9.1"
authors = ["tarkah <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ cargo build --release

# CLI Arguments
```
karoake-rs 0.9.0
karoake-rs 0.9.1
tarkah <[email protected]>
A simple, network enabled karaoke player in Rust
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ fn run() -> Result<(), Error> {

fn get_config() -> Result<Config, failure::Error> {
let matches = App::new("karoake-rs")
.version("0.9.0")
.version("0.9.1")
.author("tarkah <[email protected]>")
.about("A simple, network enabled karaoke player in Rust")
.arg(
Expand Down

0 comments on commit e2f6688

Please sign in to comment.