diff --git a/CHANGELOG.md b/CHANGELOG.md index 6829d5a..b760e20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to PyTheory are documented here. +## 0.26.3 + +- Stereo drum panning — each sound placed in the stereo field (hat right, crash left, toms spread, kick/snare center) +- Stereo convolution reverb — different IR per L/R channel for all 7 presets +- 2 new songs: Neon Grid (stereo acid), Glass and Silk (sine+triangle waltz) + ## 0.26.2 - Stereo convolution reverb — different IR per L/R channel for all 7 presets diff --git a/pyproject.toml b/pyproject.toml index 0591096..d7a4e11 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pytheory" -version = "0.26.2" +version = "0.26.3" description = "Music Theory for Humans" readme = "README.md" license = "MIT" diff --git a/pytheory/__init__.py b/pytheory/__init__.py index a65945e..90680b6 100644 --- a/pytheory/__init__.py +++ b/pytheory/__init__.py @@ -1,6 +1,6 @@ """PyTheory: Music Theory for Humans.""" -__version__ = "0.26.2" +__version__ = "0.26.3" from .tones import Tone, Interval from .systems import System, SYSTEMS diff --git a/uv.lock b/uv.lock index 0c1d01d..04bda52 100644 --- a/uv.lock +++ b/uv.lock @@ -707,7 +707,7 @@ wheels = [ [[package]] name = "pytheory" -version = "0.26.2" +version = "0.26.3" source = { editable = "." } dependencies = [ { name = "numeral" },