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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased
## v1.5.0 (2026-06-14) — Band-limited false-positive gate

- **Fewer false positives on band-limited music (Rule 1 near-Nyquist gate).** A 320 kbps
MP3 low-passes at ~20.5 kHz — exactly where genuinely band-limited lossless (baroque,
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "flac-detective"
version = "1.4.0"
version = "1.5.0"
description = "Advanced FLAC authenticity analyzer - Detects MP3-to-FLAC transcodes with high precision"
readme = "README.md"
requires-python = ">=3.10"
Expand Down Expand Up @@ -194,7 +194,7 @@ disable = [

[tool.commitizen]
name = "cz_conventional_commits"
version = "1.4.0"
version = "1.5.0"
tag_format = "v$version"
update_changelog_on_bump = false
version_files = [
Expand Down
6 changes: 3 additions & 3 deletions src/flac_detective/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
All other files should reference this file.
"""

__version__ = "1.4.0"
__version__ = "1.5.0"
__version_info__ = tuple(int(x) for x in __version__.split("."))

# Release information
__release_date__ = "2026-06-10"
__release_name__ = "Beets plugin + English-only output"
__release_date__ = "2026-06-14"
__release_name__ = "Band-limited false-positive gate"

# Metadata
__author__ = "Guillain d'Erceville"
Expand Down
Loading