From d1a2633be03b4abb9c07058d09ba5ae2bf411fe0 Mon Sep 17 00:00:00 2001 From: Christophe Favergeon Date: Fri, 20 Jan 2023 09:24:11 +0100 Subject: [PATCH] Updated PythonWrapper version and README --- PythonWrapper_README.md | 3 ++- cmsisdsp/__init__.py | 6 +++--- cmsisdsp/version.py | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/PythonWrapper_README.md b/PythonWrapper_README.md index c3014ec5..7ea725b4 100644 --- a/PythonWrapper_README.md +++ b/PythonWrapper_README.md @@ -239,9 +239,10 @@ The wrapper is now containing the compute graph Python scripts and you should re # Change history -## Version 1.10.0: +## Version 1.9.4: * Dynamic Time Warping API +* Window functions for FFT * New asynchronous mode for the compute graph (see [compute graph documentation](https://github.com/ARM-software/CMSIS-DSP/tree/main/ComputeGraph) for more details. diff --git a/cmsisdsp/__init__.py b/cmsisdsp/__init__.py index 970b6bdc..d149c99a 100755 --- a/cmsisdsp/__init__.py +++ b/cmsisdsp/__init__.py @@ -20,15 +20,15 @@ from cmsisdsp_window import * __version__ = cmsisdsp.version.__version__ # CMSIS-DSP Version used to build the wrapper -cmsis_dsp_version="1.14.4" +cmsis_dsp_version="1.14.3" # CMSIS-DSP Commit hash used to build the wrapper -commit_hash=" b46a2f86b5c9d8247ea5417fc0e0022876b80dcf" +commit_hash=" 31d9d2ef4ace9d3e3ca014d25525af3b99e86a66" # True if development version of CMSIS-DSP used # (So several CMSIS-DSP versions may have same version number hence the commit hash) -developmentVersion=True +developmentVersion=False __all__ = ["datatype", "fixedpoint", "mfcc"] diff --git a/cmsisdsp/version.py b/cmsisdsp/version.py index ba8d1b5a..b30bc6a7 100755 --- a/cmsisdsp/version.py +++ b/cmsisdsp/version.py @@ -1,2 +1,2 @@ # Python wrapper version -__version__ = "1.10.0" +__version__ = "1.9.4"