summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2017-06-03 17:07:11 +0300
committerClaudiu Popa <pcmanticore@gmail.com>2017-06-03 17:07:11 +0300
commit4643f7dfb45d9f98c7a116d87a6f53ff3262d313 (patch)
tree79bbf7887b33f2d15c1e61c8b1c31bf873c99b2c
parentdbd50d90306f1a65f046ce2bdea2a78f21e46495 (diff)
downloadpylint-git-4643f7dfb45d9f98c7a116d87a6f53ff3262d313.tar.gz
Prepare 1.7.2 releasepylint-1.7.2
-rw-r--r--ChangeLog15
-rw-r--r--pylint/__pkginfo__.py2
2 files changed, 16 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8bbe5a242..ff6eb0b04 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,21 @@
Pylint's ChangeLog
------------------
+What's New in Pylint 1.7.2?
+===========================
+
+Release date: 2017-06-03
+
+ * enum34 dependency is forced to be at least version 1.1.3. Fixes spurious
+ bug related to enum classes being falsy in boolean context, which caused
+ _Inconsistent Hierarchy_ `RuntimeError` in `singledispatch` module.
+
+ See links below for details:
+ - http://bugs.python.org/issue26748
+ - https://bitbucket.org/ambv/singledispatch/issues/8/inconsistent-hierarchy-with-enum
+ - https://bitbucket.org/stoneleaf/enum34/commits/da50803651ab644e6fce66ebc85562f1117c344b
+
+
What's New in Pylint 1.7.1?
=========================
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index 505690060..099da4ba1 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -18,7 +18,7 @@ from setuptools import __version__ as setuptools_version
modname = distname = 'pylint'
-numversion = (1, 7, 1)
+numversion = (1, 7, 2)
version = '.'.join([str(num) for num in numversion])
install_requires = [