Skip to content

Commit

Permalink
Add 2.8.0 in the Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Feb 21, 2021
1 parent 77ed8cd commit da2473d
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 5 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
Pylint's ChangeLog
------------------

What's New in Pylint 2.8.0?
===========================



What's New in Pylint 2.7.0?
===========================

Expand Down
9 changes: 6 additions & 3 deletions doc/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,16 @@ if it's an issue labelled as blocker.
### Files to update after releases

#### Changelog
Create a new section, with the name of the release ``X.Y.Z+1`` (or ``X.Y+1.0`` for
major release) and the estimated date when it is going to be published. If

* Create a new section, with the name of the release ``X.Y.Z+1`` on the ``X.Y`` branch.
* If it's a major release, also create a new section for ``X.Y+1.0`` on the master branch

You need to add the estimated date when it is going to be published. If
no date can be known at that time, we should use ``Undefined``.

#### Whatsnew

Only for major release, create a new ``What's new in Pylint X.Y+1`` document
If it's a major release, create a new ``What's new in Pylint X.Y+1`` document
Take a look at the examples from ``doc/whatsnew``.

### Versions
Expand Down
17 changes: 17 additions & 0 deletions doc/whatsnew/2.8.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
**************************
What's New in Pylint 2.8
**************************

:Release: 2.8
:Date: undefined

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.8.rst
2.7.rst
2.6.rst
2.5.rst
Expand Down
4 changes: 2 additions & 2 deletions pylint/__pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
from os.path import join

# For an official release, use dev_version = None
numversion = (2, 7, 0)
dev_version = None
numversion = (2, 8, 0)
dev_version = 1

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

0 comments on commit da2473d

Please sign in to comment.