diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d11204..13f041c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.2.1] - 2026-03-27 + +### Fixed + +- Compressed files (MP3, AAC, etc.) processed via ffmpeg now display their original format name instead of "WAV" (by @jaimefgdev, #62) + +### Changed + +- CI consolidated to a single check with TruffleHog secrets scanning + +[0.2.1]: https://github.com/systemblueteam/sounddiff/compare/v0.2.0...v0.2.1 + ## [0.2.0] - 2026-03-27 ### Added diff --git a/pyproject.toml b/pyproject.toml index 3abf9a3..f0d295f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "sounddiff" -version = "0.2.0" +version = "0.2.1" description = "Structured audio comparison for producers and developers. Think git diff, but for audio." readme = "README.md" license = "MIT" diff --git a/src/sounddiff/__init__.py b/src/sounddiff/__init__.py index 5ab82b8..9d4ae3d 100644 --- a/src/sounddiff/__init__.py +++ b/src/sounddiff/__init__.py @@ -1,3 +1,3 @@ """sounddiff: structured audio comparison for producers and developers.""" -__version__ = "0.2.0" +__version__ = "0.2.1"