summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2018-11-25 18:25:15 +0100
committerClaudiu Popa <pcmanticore@gmail.com>2018-11-25 18:25:15 +0100
commitef34162576f0d86b1c5ef4f0b8ff74afe3bb44fb (patch)
tree2727a4ce82b5242e10b440b1f291976a83847195
parentbc25da2681ceef9560c13d1e412aa79c49c67a57 (diff)
downloadpylint-git-ef34162576f0d86b1c5ef4f0b8ff74afe3bb44fb.tar.gz
Prepare 2.2
-rw-r--r--ChangeLog2
-rw-r--r--pylint/__pkginfo__.py7
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index ca49170bb..31619e41e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,7 +5,7 @@ Pylint's ChangeLog
What's New in Pylint 2.2?
=========================
-Release date: TBA
+Release date: 2018-11-25
* Consider ``range()`` objects for ``undefined-loop-variable`` leaking from iteration.
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index d2e9590b9..5e2f08da8 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -26,10 +26,13 @@ from os.path import join
modname = distname = "pylint"
numversion = (2, 2, 0)
-dev_version = "dev"
+dev_version = None
string_version = ".".join(str(num) for num in numversion)
-version = string_version + "-" + dev_version
+if dev_version:
+ version = string_version + "-" + dev_version
+else:
+ version = string_version
install_requires = ["astroid>=2.0.0", "isort >= 4.2.5", "mccabe"]