Skip to content

Commit ac66c8a

Browse files
authored
Merge pull request #9 from Linkid/release-1.2
Bump version: 1.2.dev0 → 1.2
2 parents a2cbefb + 81638d6 commit ac66c8a

File tree

5 files changed

+13
-12
lines changed

5 files changed

+13
-12
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Release notes
22
=============
33

4-
1.2.dev0 (unreleased)
5-
---------------------
4+
1.2 (2020-04-12)
5+
----------------
66

77
- Python 3 compatible (CI, code, tests)
88
- Code: use `std::fmod` instead of `std::remainder` only for Visual C++ 9.0 (Windows & python 2.7)

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'FoFiX team'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '1.2.dev0'
25+
release = '1.2'
2626

2727

2828
# -- General configuration ---------------------------------------------------

pypitch/_pypitch.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# You should have received a copy of the GNU General Public License
1515
# along with this program. If not, see <http://www.gnu.org/licenses/>.
1616

17-
__version__ = '1.2.dev0'
17+
__version__ = '1.2'
1818

1919
from libcpp.vector cimport vector
2020

setup.cfg

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,19 @@ source-dir = doc/source
77
build-dir = doc/build/
88

99
[bumpversion]
10-
current_version = 1.2.dev0
10+
current_version = 1.2
1111
commit = True
1212
parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<release>[a-z]+0))?
13-
serialize =
14-
{major}.{minor}.{release}
15-
{major}.{minor}
13+
serialize =
14+
{major}.{minor}.{release}
15+
{major}.{minor}
1616

1717
[bumpversion:file:doc/source/conf.py]
1818
[bumpversion:file:setup.py]
1919
[bumpversion:file:pypitch/_pypitch.pyx]
2020
[bumpversion:part:release]
2121
optional_value = gamma
22-
values =
23-
dev0
24-
gamma
22+
values =
23+
dev0
24+
gamma
25+

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
# setup
4747
setup(
4848
name='pypitch',
49-
version='1.2.dev0',
49+
version='1.2',
5050
description='PyPitch analyses audio streams for pitch',
5151
long_description=long_description,
5252
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)