Skip to content

Commit

Permalink
Bump to version 0.9.2
Browse files Browse the repository at this point in the history
- Fix bug where web player would panic if incorrect audio data was
  attempted to decode. Player won't panic, but user will still need to
  remove song from queue since it can't be played.
- Update dependencies, remove default features from some to reduce
  dependency tree.
- Remove frontend from Cargo workspace to get working better with RLS
  for multi-folder workspace in VSCode
  • Loading branch information
tarkah committed Feb 11, 2020
1 parent 43491cd commit 95275a1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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 = "karaoke-rs"
version = "0.9.1"
version = "0.9.2"
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.1
karoake-rs 0.9.2
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.1")
.version("0.9.2")
.author("tarkah <[email protected]>")
.about("A simple, network enabled karaoke player in Rust")
.arg(
Expand Down

0 comments on commit 95275a1

Please sign in to comment.