summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-09-14 10:31:58 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-11-25 15:59:05 +0100
commit4a9c9ae9a75c12ca40f8c77fb76fd88c65f493a1 (patch)
tree7f3ae194e9bda8242210a80782f3c2e1372fea9c
parentc985e81cc52b262749f65916ee8c9201a0791b7e (diff)
downloadpylint-git-3.0.0.alpha.tar.gz
Upgrade tbump and the documentation for 3.0.0 alpha release3.0.0.alpha
-rw-r--r--ChangeLog6
-rw-r--r--pylint/__pkginfo__.py2
-rw-r--r--tbump.toml4
3 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index b81fcea04..a9a485e20 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,12 +2,14 @@
Pylint's ChangeLog
------------------
-What's New in Pylint 3.0.0?
-===========================
+What's New in Pylint 3.0.0-a5?
+==============================
..
Put breaking changes here and also in 'doc/whatsnew/3.0.rst'
+* This is 2.11.0 with the breaking changes of the future version 3.0.
+
* Fix the score option not being honored when exporting to JSON
The default setting was to have a score, but it did not work. Now it will give a score at the end of the json:
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index 17f6304cd..bcdf7fbf8 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -2,7 +2,7 @@
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
from typing import Tuple
-__version__ = "2.12.1-dev0"
+__version__ = "3.0.0-a5"
def get_numversion_from_version(v: str) -> Tuple:
diff --git a/tbump.toml b/tbump.toml
index 5a77b16c0..dcf2f3330 100644
--- a/tbump.toml
+++ b/tbump.toml
@@ -1,7 +1,7 @@
github_url = "https://github.com/PyCQA/pylint"
[version]
-current = "2.12.1-dev0"
+current = "3.0.0-a5"
regex = '''
^(?P<major>0|[1-9]\d*)
\.
@@ -20,6 +20,8 @@ tag_template = "v{new_version}"
# tbump.toml location.
[[file]]
src = "pylint/__pkginfo__.py"
+[[file]]
+src = "ChangeLog"
# You can specify a list of commands to
# run after the files have been patched