From 5084b9cb54e3a41d0fb18683fdca906fb3d6e8be Mon Sep 17 00:00:00 2001 From: systemblueteam <252834015+systemblueteam@users.noreply.github.com> Date: Fri, 27 Mar 2026 17:31:28 -0400 Subject: [PATCH] chore: bump version to 0.2.1 --- CHANGELOG.md | 12 ++++++++++++ pyproject.toml | 2 +- src/sounddiff/__init__.py | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) 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"