Skip to content

Commit 67e59ac

Browse files
Pierre-Sassoulasjacobtylerwalls
authored andcommitted
Bump pylint to 3.3.0-dev0, update changelog
1 parent b738d23 commit 67e59ac

File tree

6 files changed

+24
-5
lines changed

6 files changed

+24
-5
lines changed

.github/workflows/checks.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,9 @@ jobs:
183183
. venv/bin/activate
184184
cd doc
185185
pre-commit run --hook-stage push sphinx-generated-doc --all-files || {
186+
echo "git diff:" ; \
186187
git diff ; \
187-
echo "Make sure that there are no modifications locally when launching 'make html'" ; \
188+
echo "End of 'git diff'" ; \
189+
echo "Make sure that 'make html' succeed without any modifications locally." ; \
188190
exit 1; \
189191
}

doc/whatsnew/3/3.3/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.3
4+
***************************
5+
6+
.. toctree::
7+
:maxdepth: 2
8+
9+
:Release:3.3
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,6 +6,7 @@ This is the full list of change in pylint 3.x minors, by categories.
66
.. toctree::
77
:maxdepth: 2
88

9+
3.3/index
910
3.2/index
1011
3.1/index
1112
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.2.0"
12+
__version__ = "3.3.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.2.0"
4+
current = "3.3.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.2.0"
2+
version = "3.3.0"
33
directory = "doc/whatsnew/fragments"
4-
filename = "doc/whatsnew/3/3.2/index.rst"
4+
filename = "doc/whatsnew/3/3.3/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)