Skip to content

Commit c61edea

Browse files
Bump pylint to 3.1.0-dev0, update changelog
1 parent 6f874fd commit c61edea

File tree

6 files changed

+27
-12
lines changed

6 files changed

+27
-12
lines changed

doc/development_guide/contributor_guide/release.rst

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ patch release first. See ``Releasing a patch version``.**
1919
``tbump 2.4.0 --no-push --no-tag``)
2020
- Check the commit created with ``git show`` amend the commit if
2121
required.
22-
- Create a new ``What's new in Pylint X.Y+1`` document. Add it to
23-
``doc/index.rst``. Take a look at the examples from ``doc/whatsnew``.
24-
Commit that with ``git commit -am "wip"``.
2522
- Move the ``main`` branch up to a dev version with ``tbump``:
2623

2724
.. code:: bash
@@ -36,11 +33,12 @@ For example:
3633
tbump 2.5.0-dev0 --no-tag --no-push
3734
git commit -am "Upgrade the version to 2.5.0-dev0 following 2.4.0 release"
3835
39-
Check the commit, fixup the ‘wip’ commit with the what’s new then push
40-
to a release branch
41-
42-
- Open a merge request with the two commits (no one can push directly
43-
on ``main``)
36+
- tbump will have created a new ``What's new in Pylint X.Y+1`` document.
37+
Add it to ``doc/whatsnew/3/index.rst``. Take a look at the examples from ``doc/whatsnew``.
38+
Commit that with ``git commit -a --amend``.
39+
- Push to a release branch
40+
- Open a merge request with the two commits (no one can push directly
41+
on ``main``)
4442
- After the merge, recover the merged commits on ``main`` and tag the
4543
first one (the version should be ``X.Y.Z``) as ``vX.Y.Z`` (For
4644
example: ``v2.4.0``)

doc/whatsnew/3/3.1/index.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
***************************
3+
What's New in Pylint 3.1
4+
***************************
5+
6+
.. toctree::
7+
:maxdepth: 2
8+
9+
:Release:3.1
10+
:Date: TBA
11+
12+
Summary -- Release highlights
13+
=============================
14+
15+
16+
.. towncrier release notes start

doc/whatsnew/3/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ This is the full list of change in pylint 3.x minors, by categories.
66
.. toctree::
77
:maxdepth: 2
88

9+
3.1/index
910
3.0/index

pylint/__pkginfo__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
from __future__ import annotations
1111

12-
__version__ = "3.0.0"
12+
__version__ = "3.1.0-dev0"
1313

1414

1515
def get_numversion_from_version(v: str) -> tuple[int, int, int]:

tbump.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github_url = "https://github.com/pylint-dev/pylint"
22

33
[version]
4-
current = "3.0.0"
4+
current = "3.1.0-dev0"
55
regex = '''
66
^(?P<major>0|[1-9]\d*)
77
\.

towncrier.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.towncrier]
2-
version = "3.0.0"
2+
version = "3.1.0"
33
directory = "doc/whatsnew/fragments"
4-
filename = "doc/whatsnew/3/3.0/index.rst"
4+
filename = "doc/whatsnew/3/3.1/index.rst"
55
template = "doc/whatsnew/fragments/_template.rst"
66
issue_format = "`#{issue} <https://github.com/pylint-dev/pylint/issues/{issue}>`_"
77
wrap = false # doesn't wrap links correctly if beginning with indentation

0 commit comments

Comments
 (0)