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
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,19 @@

Notable changes, newest first. Dates are ISO 8601.

## Unreleased
## 1.5.0 — 2026-08-24

A minor rather than a patch: the CLI accepts flags it used to refuse, `--verbose`
shows a severity that was previously displayed nowhere, and `plainsong spec`
exits non-zero on finding no specs where it used to exit 0. Nothing about the
notation changes -- 6,321 files compile to exactly the music they did in 1.0.0,
which the corpus fingerprint checks rather than assumes.

The one thing to read before upgrading: **`plainsong spec` now fails when it
finds nothing.** A script that ran it against an install missing its spec files
and treated 0 as success will now see a failure. That is the point -- that exact
silence is what let a broken package through a release.


### `--help` now shows the shape of the notation

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ in the documentation that stopped compiling would fail the build.

## Status

Version 1.4. The notation, the CLI surface and the provider catalogue format are
Version 1.5. The notation, the CLI surface and the provider catalogue format are
stable; changes to them will go through a deprecation cycle.

This release is a rebuild rather than an increment. The previous engine assumed a
Expand Down
2 changes: 1 addition & 1 deletion plainsong/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Single source of truth for the version number."""

__version__ = "1.4.0"
__version__ = "1.5.0"

# Notation dialect versions this build understands.
SUPPORTED_DIALECTS = ("absolute", "relative")
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 = "setuptools.build_meta"

[project]
name = "plainsong"
version = "1.4.0"
version = "1.5.0"
description = "Plain-text music notation that compiles to MIDI and audio, with an embedded agent."
readme = "README.md"
requires-python = ">=3.10"
Expand Down
Loading