diff --git a/ChangeLog b/ChangeLog index 368aff40a0..a28aecfc7f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,13 +2,13 @@ Pylint's ChangeLog ------------------ -What's New in Pylint 2.8.0? -=========================== -Release date: 2021-04-11 - .. Put new features and bugfixes here and also in 'doc/whatsnew/2.8.rst' +What's New in Pylint 2.8.0? +=========================== +Release date: 2021-04-25 + * New refactoring message ``consider-using-with``. This message is emitted if resource-allocating functions or methods of the standard library (like ``open()`` or ``threading.Lock.acquire()``) that can be used as a context manager are called without a ``with`` block. diff --git a/setup.cfg b/setup.cfg index 6b90a5bab5..dab95b276a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -37,7 +37,6 @@ project_urls = "User manual" = http://pylint.pycqa.org/en/latest/ "Contributing" = http://pylint.pycqa.org/en/latest/development_guide/contribute.html "Technical references" = http://pylint.pycqa.org/en/latest/technical_reference/index.html - "Mailing list" = mailto:code-quality@python.org [options] packages = find: