diff --git a/README.rst b/README.rst index 1ff1f4a..1b9a76a 100644 --- a/README.rst +++ b/README.rst @@ -49,6 +49,15 @@ This code is heavily based on Releases ======== +0.14.0 +~~~~~~ + +- Added support for Pylint's ignore-patterns for regex based ignores + thanks to `khokhlin `_ +- pytest-pylint now caches successful pylint checks to speedup test + reruns when files haven't changed thanks to `yanqd0 + `_ + 0.13.0 ~~~~~~ diff --git a/setup.py b/setup.py index ec9f871..0e56f83 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ description='pytest plugin to check source code with pylint', long_description=open("README.rst").read(), license='MIT', - version='0.13.0', + version='0.14.0', author='Carson Gee', author_email='x@carsongee.com', url='https://github.com/carsongee/pytest-pylint',