summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2017-12-15 10:55:22 +0100
committerClaudiu Popa <pcmanticore@gmail.com>2017-12-15 10:56:30 +0100
commit17ed43115509ae76c2768b61136f99de593f91e3 (patch)
treec22c2c99c73835cf0bcab513a0ec270e5e1f7841
parentb9061a0596457cf89ddd3dcf65c8aae7fb241e69 (diff)
downloadpylint-git-17ed43115509ae76c2768b61136f99de593f91e3.tar.gz
Prepare 1.8
-rw-r--r--ChangeLog2
-rw-r--r--doc/whatsnew/1.7.rst2
-rw-r--r--doc/whatsnew/1.8.rst4
-rw-r--r--pylint/__pkginfo__.py2
4 files changed, 6 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 7dd741665..287080961 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,8 @@ Pylint's ChangeLog
What's New in Pylint 1.8?
=========================
+Release date: 2017-12-15
+
* Respect disable=... in config file when running with --py3k.
* New warning `shallow-copy-environ` added
diff --git a/doc/whatsnew/1.7.rst b/doc/whatsnew/1.7.rst
index e9ada8737..4c331e36c 100644
--- a/doc/whatsnew/1.7.rst
+++ b/doc/whatsnew/1.7.rst
@@ -2,7 +2,7 @@
What's New In Pylint 1.7
**************************
-:Release: |release|
+:Release: 1.7
:Date: 2017-04-13
diff --git a/doc/whatsnew/1.8.rst b/doc/whatsnew/1.8.rst
index 6180d5705..8878ed166 100644
--- a/doc/whatsnew/1.8.rst
+++ b/doc/whatsnew/1.8.rst
@@ -2,8 +2,8 @@
What's New In Pylint 1.8
**************************
-:Release: |release|
-:Date: |TBA|
+:Release: 1.8
+:Date: 2017-12-15
Summary -- Release highlights
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index 14fdda9a0..a8f14508d 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -22,7 +22,7 @@ numversion = (1, 8, 0)
version = '.'.join([str(num) for num in numversion])
install_requires = [
- 'astroid>=1.5.1',
+ 'astroid<2.0',
'six',
'isort >= 4.2.5',
'mccabe',