Skip to content

Commit

Permalink
release bugfix 0.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdsk committed Nov 8, 2024
1 parent be29a3f commit bb2a0bd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

# Version 0.20.1 (2024-11-08)

### Fixed
- Builds without the `symphonia` feature did not compile

# Version 0.20.0 (2024-11-08)

### Added
Expand Down
2 changes: 2 additions & 0 deletions src/source/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -634,6 +634,8 @@ impl std::error::Error for SeekError {
}
}
}

#[cfg(feature = "symphonia")]
impl From<crate::decoder::symphonia::SeekError> for SeekError {
fn from(source: crate::decoder::symphonia::SeekError) -> Self {
SeekError::SymphoniaDecoder(source)
Expand Down

0 comments on commit bb2a0bd

Please sign in to comment.