diff options
| -rw-r--r-- | CHANGES | 6 | ||||
| -rw-r--r-- | pygments/__init__.py | 2 | ||||
| -rw-r--r-- | scripts/release-checklist | 8 |
3 files changed, 10 insertions, 6 deletions
@@ -6,6 +6,12 @@ Since 2.5.0, issue numbers refer to the tracker at pull request numbers to the requests at <https://github.com/pygments/pygments/pulls>. + +Version 2.6 +----------- +(not released yet) + + Version 2.5.2 ------------- (released November 29, 2019) diff --git a/pygments/__init__.py b/pygments/__init__.py index 89efc350..5ba4d973 100644 --- a/pygments/__init__.py +++ b/pygments/__init__.py @@ -29,7 +29,7 @@ import sys from pygments.util import StringIO, BytesIO -__version__ = '2.5.2' +__version__ = '2.5.2+' __docformat__ = 'restructuredtext' __all__ = ['lex', 'format', 'highlight'] diff --git a/scripts/release-checklist b/scripts/release-checklist index f1bd0f38..599d6a5f 100644 --- a/scripts/release-checklist +++ b/scripts/release-checklist @@ -15,10 +15,8 @@ Release checklist * ``twine upload dist/Pygments-$NEWVER*`` * Check PyPI release page for obvious errors * ``git tag -a`` -* Merge default into stable if this was a ``x.y.0`` -* Update homepage (release info), regenerate docs (+printable!) -* Add new version/milestone to tracker categories -* Write announcement and send to mailing list/python-announce * Update version info, add new ``CHANGES`` entry for next version * ``git commit`` -* ``git push`` +* ``git push``, ``git push --tags`` +* Add new version/milestone to tracker categories +* Write announcement and send to mailing list/python-announce |
