Skip to content

Commit 77de509

Browse files
committed
Prepare for release 3.00
1 parent e57ccd1 commit 77de509

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
===============
2-
pycparser v2.23
2+
pycparser v3.00
33
===============
44

55

TODO.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ To upload to PyPI:
2626

2727
$ uv publish dist/*
2828

29+
(can use ``--token``)
30+
2931
Check that `pip` can install and load pycparser from PyPI in this new version.
3032

3133
Tag in git. When pushing to GitHub, git push --tags

pycparser/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# License: BSD
99
# -----------------------------------------------------------------
1010
__all__ = ["c_lexer", "c_parser", "c_ast"]
11-
__version__ = "2.23"
11+
__version__ = "3.00"
1212

1313
import io
1414
from subprocess import check_output

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "pycparser"
7-
version = "2.23"
7+
version = "3.00"
88
description = "C parser in Python"
99
readme = "README.rst"
1010
license = "BSD-3-Clause"

0 commit comments

Comments
 (0)