From af49b099675be2bc8de04815a5416fc3fe3790a8 Mon Sep 17 00:00:00 2001 From: Daniel Jones Date: Fri, 23 Feb 2024 18:13:22 +0000 Subject: [PATCH] Update version and CHANGELOG --- CHANGELOG.md | 9 +++++++++ setup.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6ed19a3..a7c50cf2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # CHANGELOG +## [v0.4.7](https://github.com/ideoforms/signalflow/tree/v0.4.7) (2024-02-23) + + - Optimized performance of `SineOscillator`, `Sum` and `ChannelMixer` on macOS with vDSP SIMD optimisations + - Added support for `int16` audio devices + - Added `num_channels` param to `AudioIn` + - Reduced `Node` memory usage by allocating buffers more economically + - Fix bug when recreating AudioGraph after destroy() + - Fixed `signalflow` command-line installer by switching to setuptools `entry_points` + ## [v0.4.6](https://github.com/ideoforms/signalflow/tree/v0.4.6) (2024-02-16) - Added `NearestNeighbours`, `KDTree` and `signalflow_analysis` package (including `AudioFeatureBuffer`) for audio feature analysis, latent space navigation and playback diff --git a/setup.py b/setup.py index a5bb95b4..9aba41ea 100644 --- a/setup.py +++ b/setup.py @@ -69,7 +69,7 @@ def build_extension(self, ext): setup( name='signalflow', - version='0.4.6', + version='0.4.7', author='Daniel Jones', author_email='dan@erase.net', description='SignalFlow is a sound synthesis library designed to make it quick and intuitive to explore complex sonic ideas',