Skip to content

Commit b2d3dfe

Browse files
committed
chore(release): v0.2.0
1 parent b383c0c commit b2d3dfe

2 files changed

Lines changed: 35 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,38 @@ All notable changes to `ffmpeg_audio` and `ffmpeg_audio_sys` will be documented
88

99
---
1010

11+
## [0.2.0] - 2026-07-21
12+
13+
### ffmpeg_audio
14+
15+
#### Breaking Changes
16+
17+
- **Changed** log feature to be disabled by default.
18+
19+
#### Added
20+
21+
- **Added** API to get raw PCM data directly, bypassing the resampler.
22+
23+
#### Refactored
24+
25+
- **Refactored** HTTP stream implementation using `tokio` and `reqwest` to support cancellation at any point.
26+
- **Refactored** negative PTS handling to be unified across the codebase.
27+
- **Refactored** stream scanning to skip irrelevant streams.
28+
- **Refactored** cover stream scanning to continue after encountering invalid streams.
29+
- **Refactored** duration scanning for more precise results.
30+
- **Refactored** seeking for more precise position accuracy.
31+
- **Refactored** added more defensive code paths.
32+
33+
#### Fixed
34+
35+
- **Fixed** unified audio timeline and hardened resampling safety boundaries.
36+
37+
### ffmpeg_audio_sys
38+
39+
- No functional changes in this release.
40+
41+
---
42+
1143
## [0.1.2] - 2026-07-14
1244

1345
### ffmpeg_audio
@@ -44,7 +76,8 @@ All notable changes to `ffmpeg_audio` and `ffmpeg_audio_sys` will be documented
4476

4577
- Initial release of raw FFmpeg FFI bindings.
4678

47-
[unreleased]: https://github.com/apoint123/ffmpeg-audio/compare/v0.1.2...HEAD
79+
[unreleased]: https://github.com/apoint123/ffmpeg-audio/compare/v0.2.0...HEAD
80+
[0.2.0]: https://github.com/apoint123/ffmpeg-audio/compare/v0.1.2...v0.2.0
4881
[0.1.2]: https://github.com/apoint123/ffmpeg-audio/compare/v0.1.1...v0.1.2
4982
[0.1.1]: https://github.com/apoint123/ffmpeg-audio/compare/v0.1.0...v0.1.1
5083
[0.1.0]: https://github.com/apoint123/ffmpeg-audio/releases/tag/v0.1.0

crates/ffmpeg_audio/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ repository = "https://github.com/apoint123/ffmpeg-audio"
66
readme = "../../README.md"
77
keywords = ["ffmpeg", "audio", "resample", "decode", "media"]
88
categories = ["multimedia::audio"]
9-
version = "0.1.2"
9+
version = "0.2.0"
1010
edition = "2024"
1111

1212
[features]

0 commit comments

Comments
 (0)