summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-03-29 22:37:32 +0200
committerGitHub <noreply@github.com>2021-03-29 22:37:32 +0200
commit245feaba1ac5d57504a06b25c53aa80800ea643e (patch)
tree48074bd326249546353ec4f864a764c9452c1309
parent13dae7c5c6d16281f1415c88f845548d6cd9c823 (diff)
downloadpylint-git-245feaba1ac5d57504a06b25c53aa80800ea643e.tar.gz
Upgrade project for 2.7.4, and 2.8.0 (#4262)
-rw-r--r--ChangeLog18
-rw-r--r--doc/release.md3
-rw-r--r--pylint/__pkginfo__.py4
3 files changed, 23 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 1a860cab7..29a4233d6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,24 @@
Pylint's ChangeLog
------------------
+What's New in Pylint 2.8.0?
+===========================
+Release date: Undefined
+
+..
+ Put new features here and also in 'doc/whatsnew/2.8.rst'
+
+
+
+What's New in Pylint 2.7.4?
+===========================
+Release date: Undefined
+
+..
+ Put bug fixes that will be cherry-picked to latest major version here
+
+
+
What's New in Pylint 2.7.3?
===========================
Release date: 2021-03-29
diff --git a/doc/release.md b/doc/release.md
index 1cbc22ee5..7df135c87 100644
--- a/doc/release.md
+++ b/doc/release.md
@@ -30,6 +30,9 @@ git --aliases=.copyrite_aliases . --jobs=8
for example). Travis should deal with the release process once the tag is pushed
with `git push origin --tags`
+4. Go to github, click on "Releases" then on the ``pylint-X.Y.Z`` tag, choose edit tag,
+ and copy past the changelog in the description.
+
## Manual Release
Following the previous steps, for a manual release run the following commands:
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index 84f9a0bf9..cdf872871 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -31,8 +31,8 @@
from os.path import join
# For an official release, use dev_version = None
-numversion = (2, 7, 3)
-dev_version = None
+numversion = (2, 8, 0)
+dev_version = 1
version = ".".join(str(num) for num in numversion)
if dev_version is not None: