Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Release notes
=============

2.0.1 (unreleased)
----------------

2.0 (2023-07-20)
----------------

Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'FoFiX team'

# The full version, including alpha/beta/rc tags
release = '2.0'
release = '2.0.1'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pypitch/_pypitch.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

__version__ = '2.0'
__version__ = '2.0.1'

from libcpp.vector cimport vector

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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<major>\d+)\.(?P<minor>\d+)(\.(?P<release>[a-z]+0))?
serialize =
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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',
Expand Down