summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"]