Skip to content

Commit f136da4

Browse files
author
Peter Slump
committed
Bump version: 0.1.3 → 0.1.4-dev
1 parent 4d433fd commit f136da4

4 files changed

Lines changed: 9 additions & 8 deletions

File tree

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ Release Notes
8585
=============
8686

8787
**unreleased**
88+
**v0.1.4-dev**
8889

8990
* Add support for password grant (thanks to @scranen)
9091
* Bugfix: Prevent multiple values for keyword argument 'audience' in jwt.decode() (thanks to @eugenejo)

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
# built documents.
5656
#
5757
# The short X.Y version.
58-
version = '0.1.3'
58+
version = '0.1.4-dev'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '0.1.3'
60+
release = '0.1.4-dev'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

setup.cfg

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[bumpversion]
2-
current_version = 0.1.3
2+
current_version = 0.1.4-dev
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
6-
serialize =
6+
serialize =
77
{major}.{minor}.{patch}-{release}
8-
{major}.{minor}.{patch}
8+
{major}.{minor}.{patch}
99

1010
[bumpversion:file:setup.py]
1111

@@ -18,9 +18,9 @@ replace = **unreleased**
1818

1919
[bumpversion:part:release]
2020
optional_value = gamma
21-
values =
21+
values =
2222
dev
23-
gamma
23+
gamma
2424

2525
[aliases]
2626
test = pytest

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from setuptools import setup, find_packages
44

5-
VERSION = '0.1.3'
5+
VERSION = '0.1.4-dev'
66

77
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
88
README = readme.read()

0 commit comments

Comments
 (0)