Skip to content

Commit b186508

Browse files
committedJun 12, 2020
Bump version: 0.3.1 → 0.3.2
1 parent 6bc788d commit b186508

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed
 

‎.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.3.1
2+
current_version = 0.3.2
33
commit = True
44
tag = True
55

‎README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ whiptail
6767
.. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/whiptail
6868
:alt: GitHub top language
6969

70-
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/whiptail/v0.3.1
70+
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/whiptail/v0.3.2
7171
:target: https://github.com/domdfcoding/whiptail/pulse
7272
:alt: GitHub commits since tagged version
7373

‎__pkginfo__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
2020 Dominic Davis-Foster <dominic@davis-foster.co.uk>
4343
"""
4444

45-
__version__ = "0.3.1"
45+
__version__ = "0.3.2"
4646

4747
modname = "whiptail"
4848
pypi_name = "whiptail-dialogs"
@@ -69,7 +69,7 @@
6969
repo_root = pathlib.Path(__file__).parent
7070

7171
# Get info from files; set: long_description
72-
long_description = (repo_root / "README.rst").read_text().replace("0.3.1", __version__) + '\n'
72+
long_description = (repo_root / "README.rst").read_text().replace("0.3.2", __version__) + '\n'
7373

7474
install_requires = (repo_root / "requirements.txt").read_text().split('\n')
7575
extras_require = {'all': []}

‎doc-source/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ whiptail
6666
.. |language| image:: https://img.shields.io/github/languages/top/domdfcoding/whiptail
6767
:alt: GitHub top language
6868

69-
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/whiptail/v0.3.1
69+
.. |commits-since| image:: https://img.shields.io/github/commits-since/domdfcoding/whiptail/v0.3.2
7070
:target: https://github.com/domdfcoding/whiptail/pulse
7171
:alt: GitHub commits since tagged version
7272

‎git_helper.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pypi_name: whiptail-dialogs
33
copyright_years: "2020"
44
author: "Dominic Davis-Foster"
55
email: "dominic@davis-foster.co.uk"
6-
version: "0.3.1"
6+
version: "0.3.2"
77
username: "domdfcoding"
88
license: 'BSD'
99
short_desc: 'Use whiptail to display dialog boxes from Python scripts.'

‎whiptail/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
__copyright__ = "2020 Dominic Davis-Foster"
2323

2424
__license__ = "BSD"
25-
__version__ = "0.3.1dev"
25+
__version__ = "0.3.2dev"
2626
__email__ = "dominic@davis-foster.co.uk"
2727

2828
# stdlib

0 commit comments

Comments
 (0)