Merge pull request #170 from Xaeroxe/release

Prepare 0.8 release
This commit is contained in:
Pierre Krieger 2018-06-22 17:39:39 +02:00 committed by GitHub
commit ae21370019
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "rodio"
version = "0.7.0"
version = "0.8.0"
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>"]
license = "Apache-2.0"
description = "Audio playback library"

View file

@ -6,6 +6,7 @@
Rust playback library.
- Playback is handled by [cpal](https://github.com/tomaka/cpal).
- MP3 decoding is handled by [minimp3](https://github.com/lieff/minimp3).
- WAV decoding is handled by [hound](https://github.com/ruud-v-a/hound).
- Vorbis decoding is handled by [lewton](https://github.com/est31/lewton).
- Flac decoding is handled by [claxon](https://github.com/ruuda/claxon).

View file

@ -18,7 +18,7 @@ mod wav;
/// Source of audio samples from decoding a file.
///
/// Supports WAV, Vorbis and Flac.
/// Supports MP3, WAV, Vorbis and Flac.
#[cfg(any(feature = "wav", feature = "flac", feature = "vorbis", feature = "mp3"))]
pub struct Decoder<R>(DecoderImpl<R>)
where