Skip to content

Add changelog #12

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
__pycache__
*.egg-info
.pytest_cache
build
dist
.tox
.venv
38 changes: 38 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -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 <https://github.com/hjwp/pytest-icdiff/issues/6>`__).

0.0.3 (2018-08-10)
~~~~~~~~~~~~~~~~~~

* Add Conda Forge installation and badge
(`PR #2 <https://github.com/hjwp/pytest-icdiff/pull/2>`__).
* Fix PyPI License classifier
(`Issue #3 <https://github.com/hjwp/pytest-icdiff/issues/3>`__).
* Fix colorization when both sides contain differences
(`Issue #4 <https://github.com/hjwp/pytest-icdiff/issues/4>`__).

0.0.2 (2018-08-08)
~~~~~~~~~~~~~~~~~~

* Fix Travis link in README.

0.0.1 (2018-08-08)
~~~~~~~~~~~~~~~~~~

* First release on PyPI.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
include LICENSE
include HISTORY.rst
include README.rst

recursive-exclude * __pycache__
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
Expand Down