Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump pylint to 4.0.0-dev0, update changelog #9948

Merged
merged 1 commit into from
Sep 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion doc/whatsnew/3/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ This is the full list of change in pylint 3.x minors, by categories.
.. toctree::
:maxdepth: 2

3.4/index
3.3/index
3.2/index
3.1/index
Expand Down
4 changes: 2 additions & 2 deletions doc/whatsnew/3/3.4/index.rst → doc/whatsnew/4/4.0/index.rst
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@

***************************
What's New in Pylint 3.4
What's New in Pylint 4.0
***************************

.. toctree::
:maxdepth: 2

:Release:3.4
:Release:4.0
:Date: TBA

Summary -- Release highlights
Expand Down
9 changes: 9 additions & 0 deletions doc/whatsnew/4/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
4.x
===

This is the full list of change in pylint 4.x minors, by categories.

.. toctree::
:maxdepth: 2

4.0/index
1 change: 1 addition & 0 deletions doc/whatsnew/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
:titlesonly:
:hidden:

4/index
3/index
2/index
1/index
Expand Down
2 changes: 1 addition & 1 deletion pylint/__pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from __future__ import annotations

__version__ = "3.4.0-dev0"
__version__ = "4.0.0-dev0"


def get_numversion_from_version(v: str) -> tuple[int, int, int]:
Expand Down
2 changes: 1 addition & 1 deletion tbump.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
github_url = "https://github.com/pylint-dev/pylint"

[version]
current = "3.4.0-dev0"
current = "4.0.0-dev0"
regex = '''
^(?P<major>0|[1-9]\d*)
\.
Expand Down
4 changes: 2 additions & 2 deletions towncrier.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.towncrier]
version = "3.4.0"
version = "4.0.0"
directory = "doc/whatsnew/fragments"
filename = "doc/whatsnew/3/3.4/index.rst"
filename = "doc/whatsnew/4/4.0/index.rst"
template = "doc/whatsnew/fragments/_template.rst"
issue_format = "`#{issue} <https://github.com/pylint-dev/pylint/issues/{issue}>`_"
wrap = false # doesn't wrap links correctly if beginning with indentation
Expand Down
Loading