From 956df5ddfc1cbd5cfa24583a1cacd935cd1af82f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Magimel?= Date: Sun, 23 Jul 2023 21:47:56 +0200 Subject: [PATCH] chore: prepare the next patch --- CHANGELOG.md | 3 +++ doc/source/conf.py | 2 +- pypitch/_pypitch.pyx | 2 +- setup.cfg | 2 +- setup.py | 3 +-- 5 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ee4d3d..9543e06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ Release notes ============= +2.0.1 (unreleased) +---------------- + 2.0 (2023-07-20) ---------------- diff --git a/doc/source/conf.py b/doc/source/conf.py index 5d3aab6..d516d45 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -22,7 +22,7 @@ author = 'FoFiX team' # The full version, including alpha/beta/rc tags -release = '2.0' +release = '2.0.1' # -- General configuration --------------------------------------------------- diff --git a/pypitch/_pypitch.pyx b/pypitch/_pypitch.pyx index 5e41db2..195feef 100644 --- a/pypitch/_pypitch.pyx +++ b/pypitch/_pypitch.pyx @@ -14,7 +14,7 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -__version__ = '2.0' +__version__ = '2.0.1' from libcpp.vector cimport vector diff --git a/setup.cfg b/setup.cfg index 39d6d96..7cf5ad7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,7 +4,7 @@ source-dir = doc/source build-dir = doc/build/ [bumpversion] -current_version = 2.0 +current_version = 2.0.1 commit = True parse = (?P\d+)\.(?P\d+)(\.(?P[a-z]+0))? serialize = diff --git a/setup.py b/setup.py index 8596b1e..5831df3 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,5 @@ #!/usr/bin/env python - # from distutils.core import setup # from distutils.extension import Extension # from distutils.sysconfig import get_python_lib @@ -46,7 +45,7 @@ # setup setup( name='pypitch', - version='2.0', + version='2.0.1', description='PyPitch analyses audio streams for pitch', long_description=long_description, long_description_content_type='text/markdown',