From 02df87af0912939210d112255ea90ab9d5add23f Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 22 Mar 2026 20:39:48 -0400 Subject: [PATCH] v0.6.1 Co-Authored-By: Claude Opus 4.6 (1M context) --- pyproject.toml | 2 +- pytheory/__init__.py | 2 +- test_pytheory.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7ef1609..f5ce155 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pytheory" -version = "0.6.0" +version = "0.6.1" description = "Music Theory for Humans" readme = "README.md" license = "MIT" diff --git a/pytheory/__init__.py b/pytheory/__init__.py index 89dc939..3a0ac18 100644 --- a/pytheory/__init__.py +++ b/pytheory/__init__.py @@ -1,6 +1,6 @@ """PyTheory: Music Theory for Humans.""" -__version__ = "0.6.0" +__version__ = "0.6.1" from .tones import Tone, Interval from .systems import System, SYSTEMS diff --git a/test_pytheory.py b/test_pytheory.py index e4c5df6..2df3f55 100644 --- a/test_pytheory.py +++ b/test_pytheory.py @@ -2622,7 +2622,7 @@ def test_tension_empty(): def test_version(): import pytheory - assert pytheory.__version__ == "0.6.0" + assert pytheory.__version__ == "0.6.1" def test_all_exports():