diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f59ac5d..e1e61e78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +v0.6.0 / 2020-02-29 +=================== +- Fix: fix stt correction. order was not updated +- Fix: #591 switch to ffmpeg for mp3 to wav convertion +- Fix: security issue in Ansible. Lib upgraded +- Fix: Typo in installation doc +- Feature: Add volume neuron + v0.6.0 / 2020-01-07 =================== - Enhancement: Enforce python3 and remove support for python2 diff --git a/install/files/python_requirements.txt b/install/files/python_requirements.txt index 9f3161b5..a9ed03d6 100644 --- a/install/files/python_requirements.txt +++ b/install/files/python_requirements.txt @@ -1,10 +1,11 @@ +Werkzeug==0.16.1 pyyaml>=5.1 six>=1.12.0 SpeechRecognition>=3.8.1 markupsafe>=1.1.1 pyaudio>=0.2.11 pyasn1>=0.4.5 -ansible>=2.8.1 +ansible>=2.9.5 jinja2>=2.10.1 cffi>=1.12.3 ipaddress>=1.0.17 diff --git a/kalliope/_version.py b/kalliope/_version.py index a6b8c497..426b9dc0 100644 --- a/kalliope/_version.py +++ b/kalliope/_version.py @@ -1,2 +1,2 @@ # https://www.python.org/dev/peps/pep-0440/ -version_str = "0.6.1b" +version_str = "0.6.1"