diff --git a/CHANGES b/CHANGES index 5a08c14..65ef12e 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,13 @@ Changelog ~~~~~~~~~ +Version 0.27.2 +-------------- + +Minor packaging fix: + +* chore: include file required by tox.ini in the sdist (#155) + Version 0.27.1 -------------- diff --git a/MANIFEST.in b/MANIFEST.in index 8fea5a9..2c41e08 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -7,3 +7,4 @@ include test/__init__.py include test/base.py include tox.ini +include reqs-dev.txt diff --git a/argh/__init__.py b/argh/__init__.py index fd6018c..d5efd71 100644 --- a/argh/__init__.py +++ b/argh/__init__.py @@ -16,4 +16,4 @@ from .helpers import * -__version__ = '0.27.1' +__version__ = '0.27.2'