From e02c0d41b335be71d9c461fe3bca577cce8d46c0 Mon Sep 17 00:00:00 2001 From: James Robert Date: Fri, 3 Feb 2017 22:37:59 -0500 Subject: [PATCH] Increment version for v0.17.0 - Add the ability to add a cover image to MP3 exports via the `cover` keyword argument to `pydub.AudioSegment().export()` - Add `pydub.AudioSegment().get_dc_offset()` and `pydub.AudioSegment().remove_dc_offset()` which allow detection and removal of DC offset in audio files. - Minor fixes for windows users --- CHANGELOG.md | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index babff178..68cbbdad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# v0.17.0 +- Add the ability to add a cover image to MP3 exports via the `cover` keyword argument to `pydub.AudioSegment().export()` +- Add `pydub.AudioSegment().get_dc_offset()` and `pydub.AudioSegment().remove_dc_offset()` which allow detection and removal of DC offset in audio files. +- Minor fixes for windows users + # v0.16.7 - Make `pydub.AudioSegment()._spawn()` accept array.array instances containing audio samples diff --git a/setup.py b/setup.py index 7c2cb0aa..b06cb9d2 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='pydub', - version='0.16.7', + version='0.17.0', author='James Robert', author_email='jiaaro@gmail.com', description='Manipulate audio with an simple and easy high level interface',