diff --git a/.gitignore b/.gitignore index 4595b1d..9d6d256 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ __pycache__ *.egg-info .pytest_cache +build dist .tox .venv diff --git a/HISTORY.rst b/HISTORY.rst new file mode 100644 index 0000000..4b37e39 --- /dev/null +++ b/HISTORY.rst @@ -0,0 +1,38 @@ +History +------- + +Pending Release +~~~~~~~~~~~~~~~ + +.. Insert new release notes below this line + +0.2 (2019-03-28) +~~~~~~~~~~~~~~~~ + +* Obey terminal width. + +0.0.4 (2018-08-26) +~~~~~~~~~~~~~~~~~~ + +* Fix for short expressions + (`Issue #6 `__). + +0.0.3 (2018-08-10) +~~~~~~~~~~~~~~~~~~ + +* Add Conda Forge installation and badge + (`PR #2 `__). +* Fix PyPI License classifier + (`Issue #3 `__). +* Fix colorization when both sides contain differences + (`Issue #4 `__). + +0.0.2 (2018-08-08) +~~~~~~~~~~~~~~~~~~ + +* Fix Travis link in README. + +0.0.1 (2018-08-08) +~~~~~~~~~~~~~~~~~~ + +* First release on PyPI. diff --git a/MANIFEST.in b/MANIFEST.in index 1ade348..9cbf8c3 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,5 @@ include LICENSE +include HISTORY.rst include README.rst recursive-exclude * __pycache__ diff --git a/README.rst b/README.rst index a0b3109..c6903aa 100644 --- a/README.rst +++ b/README.rst @@ -1,11 +1,11 @@ -=============== +============= pytest-icdiff -=============== +============= .. image:: https://img.shields.io/pypi/v/pytest-icdiff.svg :target: https://pypi.org/project/pytest-icdiff :alt: PyPI version - + .. image:: https://img.shields.io/conda/vn/conda-forge/pytest-icdiff.svg :target: https://anaconda.org/conda-forge/pytest-icdiff :alt: conda-forge version diff --git a/setup.py b/setup.py index 62355e5..44a851a 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def read(fname): license='GNU GPL v3.0', url='https://github.com/hjwp/pytest-icdiff', description='use icdiff for better error messages in pytest assertions', - long_description=read('README.rst'), + long_description=read('README.rst') + read('HISTORY.rst'), py_modules=['pytest_icdiff'], python_requires='>=3.6', install_requires=['pytest', 'icdiff', 'pprintpp'],