Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,23 @@ 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.0] - 2026-03-27

### Added

- Rich progress bar for long audio files, with `--no-color` support (by @jaimefgdev, #40)
- FFmpeg fallback for compressed formats: MP3, AAC, OGG, and others not natively supported by soundfile (by @jaimefgdev, #45)
- CI exit codes: `--threshold` flag and machine-readable exit codes for regression testing (#41)
- `--verbose` flag: side-by-side per-file metadata panels showing format, duration, sample rate, bit depth, channels, and file size (#65)
- `voice.py` module centralizing all user-facing copy: verdicts, tips, error messages (#66)

### Changed

- Terminal output overhauled: always-on spinner, Rich panels per section (Metadata, Loudness, Spectral, Segments, Issues), dimmed unchanged metadata values, and a summary verdict at the end (#63)
- CI consolidated from multiple matrix jobs to a single check (#61)

[0.2.0]: https://github.com/systemblueteam/sounddiff/compare/v0.1.0...v0.2.0

## [0.1.0] - 2026-03-26

### Added
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "sounddiff"
version = "0.1.0"
version = "0.2.0"
description = "Structured audio comparison for producers and developers. Think git diff, but for audio."
readme = "README.md"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/sounddiff/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""sounddiff: structured audio comparison for producers and developers."""

__version__ = "0.1.0"
__version__ = "0.2.0"
Loading