Skip to content

Commit 9211e2e

Browse files
author
Peter Slump
committed
Tweaks for bumpversion
1 parent 86fb964 commit 9211e2e

2 files changed

Lines changed: 21 additions & 0 deletions

File tree

README.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,11 @@ Run the container
6767
6868
Go in the browser to http://localhost:8050 and view the documentation which get
6969
refreshed and updated on every update in the documentation source.
70+
71+
Release Notes
72+
=============
73+
74+
**unreleased** **0.1.4**
75+
76+
* Add support for password grant (thanks to @scranen)
77+
* Bugfix: Prevent multiple values for keyword argument 'audience' in jwt.decode() (thanks to @eugenejo)

setup.cfg

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,25 @@
22
current_version = 0.1.3
33
commit = True
44
tag = True
5+
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
6+
serialize =
7+
{major}.{minor}.{patch}-{release}
8+
{major}.{minor}.{patch}
59

610
[bumpversion:file:setup.py]
711

812
[bumpversion:file:docs/conf.py]
913

1014
[bumpversion:file:README.rst]
15+
search = **unreleased**
16+
replace = **unreleased**
17+
**v{new_version}**
18+
19+
[bumpversion:part:release]
20+
optional_value = gamma
21+
values =
22+
dev
23+
gamma
1124

1225
[aliases]
1326
test = pytest

0 commit comments

Comments
 (0)