Skip to content

Commit f1eaaa4

Browse files
committed
release bugfix 0.20.1
1 parent be29a3f commit f1eaaa4

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
# Version 0.20.1 (2024-11-08)
11+
12+
### Fixed
13+
- Builds without the `symphonia` feature did not compile
14+
1015
# Version 0.20.0 (2024-11-08)
1116

1217
### Added

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rodio"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
license = "MIT OR Apache-2.0"
55
description = "Audio playback library"
66
keywords = ["audio", "playback", "gamedev"]

src/source/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -634,6 +634,8 @@ impl std::error::Error for SeekError {
634634
}
635635
}
636636
}
637+
638+
#[cfg(feature = "symphonia")]
637639
impl From<crate::decoder::symphonia::SeekError> for SeekError {
638640
fn from(source: crate::decoder::symphonia::SeekError) -> Self {
639641
SeekError::SymphoniaDecoder(source)

0 commit comments

Comments
 (0)