Skip to content

Commit

Permalink
do patch release bump in setup.py, update changelog
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen L Arnold <[email protected]>
  • Loading branch information
sarnold committed Oct 21, 2020
1 parent 2d0c058 commit 9f7797a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 7 additions & 0 deletions changelog.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
0.9.4p1 (2020-10-20)
--------------------
- Merge pull request #84 from freepn/recache

* helper_funcs.py: slight refactor in get_cachedir for Ubuntu/systemd


0.9.4 (2020-10-20)
------------------
- Merge pull request #82 from freepn/retests. [Steve Arnold]
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,13 @@ def read_file(filename):
version = ast.literal_eval(line.split('=', 1)[1].strip())
break

FPND_VERSION = version

# make setuptools happy with PEP 440-compliant post version
# (enable this for patch releases using n.n.n-n)
#REL_TAG = FPND_VERSION.replace('-', 'p')
FPND_VERSION = version + '-1'
REL_TAG = FPND_VERSION.replace('-', 'p')

FPND_DOWNLOAD_URL = (
'https://github.com/sarnold/fpnd/tarball/' + FPND_VERSION
'https://github.com/sarnold/fpnd/tarball/' + REL_TAG
)

setup(
Expand Down

0 comments on commit 9f7797a

Please sign in to comment.