diff --git a/CHANGELOG.md b/CHANGELOG.md index b336cca..393d11f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [v0.1.4](https://github.com/ideoforms/isobar/tree/v0.1.4) (2024-08-11) + +- Added support for LFOs for continuous parameter modulation, and `PLFO` pattern class +- Added `Track.nudge()` to nudge a track back/forward in time +- Added `FluidSynthOutputDevice` to interact with FluidSynth sound fonts +- Added initial support for monome devices +- Added `scale_exp_lin` + ## [v0.1.3](https://github.com/ideoforms/isobar/tree/v0.1.3) (2024-07-01) - Added support for Ableton Link clock sync (thanks to [Raphaƫl Forment](https://github.com/Bubobubobubobubo) for providing LinkPython-extern) diff --git a/setup.py b/setup.py index c41fd98..65d6f9a 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name='isobar', - version='0.1.3', + version='0.1.4', description='A Python library to express and manipulate musical patterns', long_description = open("README.md", "r").read(), long_description_content_type = "text/markdown",