Skip to content

Commit

Permalink
Post release chores
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Apr 24, 2021
1 parent 7dece5b commit f887c38
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
7 changes: 6 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@
Pylint's ChangeLog
------------------

What's New in Pylint 2.8.1?
===========================
Release date: TBA

..
Put new features and bugfixes here and also in 'doc/whatsnew/2.8.rst'
Put new features and bugfixes here and also in 'doc/whatsnew/2.9.rst'


What's New in Pylint 2.8.0?
===========================
Expand Down
16 changes: 16 additions & 0 deletions doc/whatsnew/2.9.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
**************************
What's New in Pylint 2.9
**************************

:Release: 2.9
:Date: TBA

Summary -- Release highlights
=============================


New checkers
============

Other Changes
=============
1 change: 1 addition & 0 deletions doc/whatsnew/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ High level descriptions of the most important changes between major Pylint versi
.. toctree::
:maxdepth: 1

2.9.rst
2.8.rst
2.7.rst
2.6.rst
Expand Down
4 changes: 2 additions & 2 deletions pylint/__pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

from typing import Optional

__version__ = "2.8.0"
__version__ = "2.8.1"
# For an official release, use 'alpha_version = False' and 'dev_version = None'
alpha_version: bool = False # Release will be an alpha version if True (ex: '1.2.3a6')
dev_version: Optional[int] = None
dev_version: Optional[int] = 1

if dev_version is not None:
if alpha_version:
Expand Down

0 comments on commit f887c38

Please sign in to comment.