summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2019-02-27 10:48:28 +0100
committerClaudiu Popa <pcmanticore@gmail.com>2019-02-27 10:48:28 +0100
commit2e2fa47dcb719fd1d797a2a73d7461a39078ccd0 (patch)
tree86768f414416a4a12e4d82dff037903e3cab2dcb
parentb18acace2194aab6db409e002a50ecf65cfe0aa9 (diff)
downloadpylint-git-2e2fa47dcb719fd1d797a2a73d7461a39078ccd0.tar.gz
Prepare 2.3.0
-rw-r--r--ChangeLog2
-rw-r--r--pylint/__pkginfo__.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 54d3ec143..0d6813ebd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,7 +5,7 @@ Pylint's ChangeLog
What's New in Pylint 2.3.0?
===========================
-Release date: TBA
+Release date: 2019-02-27
* Protect against `NonDeducibleTypeHierarchy` when calling semi-private `is_subtype`
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index 88d040b69..035bbd7cf 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -26,11 +26,11 @@ from os.path import join
modname = distname = "pylint"
numversion = (2, 3, 0)
-dev_version = "2"
+dev_version = None
string_version = ".".join(str(num) for num in numversion)
if dev_version:
- version = string_version + "-dev" + dev_version
+ version = string_version + "-dev" + str(dev_version)
else:
version = string_version