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

Notable changes, newest first. Dates are ISO 8601.

## Unreleased
## 1.3.0 — 2026-08-18

A minor rather than a patch on two counts: `Meter.readable` and `theory.KEY_RE`
are new public names, and unreadable header values now produce diagnostics that
were not there before — which changes what `check` reports for anyone counting
warnings in CI. No notation changes: 6,321 files compile to exactly the music
they did in 1.0.0.

Also the release workflow passes `skip-existing`, so a run whose artifacts are
already on PyPI completes instead of dying on duplicates. That is what has been
blocking the GitHub Release notes for 1.0.1, 1.1.0 and 1.2.0.

### Header typos were swallowed in silence

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

## Status

Version 1.2. The notation, the CLI surface and the provider catalogue format are
Version 1.3. 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.2.0"
__version__ = "1.3.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.2.0"
version = "1.3.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