File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ # Version 0.20.1 (2024-11-08)
11
+
12
+ ### Fixed
13
+ - Builds without the ` symphonia ` feature did not compile
14
+
10
15
# Version 0.20.0 (2024-11-08)
11
16
12
17
### Added
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " rodio"
3
- version = " 0.20.0 "
3
+ version = " 0.20.1 "
4
4
license = " MIT OR Apache-2.0"
5
5
description = " Audio playback library"
6
6
keywords = [" audio" , " playback" , " gamedev" ]
Original file line number Diff line number Diff line change @@ -634,6 +634,8 @@ impl std::error::Error for SeekError {
634
634
}
635
635
}
636
636
}
637
+
638
+ #[ cfg( feature = "symphonia" ) ]
637
639
impl From < crate :: decoder:: symphonia:: SeekError > for SeekError {
638
640
fn from ( source : crate :: decoder:: symphonia:: SeekError ) -> Self {
639
641
SeekError :: SymphoniaDecoder ( source)
You can’t perform that action at this time.
0 commit comments