Skip to content

Commit 245feab

Browse files
Upgrade project for 2.7.4, and 2.8.0 (#4262)
1 parent 13dae7c commit 245feab

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

ChangeLog

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22
Pylint's ChangeLog
33
------------------
44

5+
What's New in Pylint 2.8.0?
6+
===========================
7+
Release date: Undefined
8+
9+
..
10+
Put new features here and also in 'doc/whatsnew/2.8.rst'
11+
12+
13+
14+
What's New in Pylint 2.7.4?
15+
===========================
16+
Release date: Undefined
17+
18+
..
19+
Put bug fixes that will be cherry-picked to latest major version here
20+
21+
22+
523
What's New in Pylint 2.7.3?
624
===========================
725
Release date: 2021-03-29

doc/release.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ git --aliases=.copyrite_aliases . --jobs=8
3030
for example). Travis should deal with the release process once the tag is pushed
3131
with `git push origin --tags`
3232

33+
4. Go to github, click on "Releases" then on the ``pylint-X.Y.Z`` tag, choose edit tag,
34+
and copy past the changelog in the description.
35+
3336
## Manual Release
3437

3538
Following the previous steps, for a manual release run the following commands:

pylint/__pkginfo__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
from os.path import join
3232

3333
# For an official release, use dev_version = None
34-
numversion = (2, 7, 3)
35-
dev_version = None
34+
numversion = (2, 8, 0)
35+
dev_version = 1
3636

3737
version = ".".join(str(num) for num in numversion)
3838
if dev_version is not None:

0 commit comments

Comments
 (0)