diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-04-09 20:22:48 +0200 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-04-24 21:44:05 +0200 |
commit | de058f8d473e9868f29e6ebe3d7ccbdb2a503ad2 (patch) | |
tree | da029430e82c7d69f241e9bb6fcecad6070c23a8 | |
parent | 6206e33a59f1e5483035f5cd59f8da2855fb27ca (diff) | |
download | pylint-git-pylint-3.0.0a3.tar.gz |
Release 3.0.0a3 (2.8.0 + breaking changes)pylint-3.0.0a3
-rw-r--r-- | pylint/__pkginfo__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py index 16fb00977..c7ed408c7 100644 --- a/pylint/__pkginfo__.py +++ b/pylint/__pkginfo__.py @@ -3,10 +3,10 @@ from typing import Optional -__version__ = "2.8.0" +__version__ = "3.0.0" # For an official release, use 'alpha_version = False' and 'dev_version = None' -alpha_version: bool = False # Release will be an alpha version if True (ex: '1.2.3a6') -dev_version: Optional[int] = None +alpha_version: bool = True # Release will be an alpha version if True (ex: '1.2.3a6') +dev_version: Optional[int] = 3 if dev_version is not None: if alpha_version: |