diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 49b9472..3da56b7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,14 @@ Important changes are emphasized. Unreleased ^^^^^^^^^^ +22.0.0 +^^^^^^ + +- Add support for Python 3.11 and 3.12 +- Drop support for EOL Python 3.7 +- Add ``__main__.py`` to enable ``python -m pypinfo`` +- Add ``ci`` field: show how many installs were from a CI + 21.0.0 ^^^^^^ diff --git a/pypinfo/__init__.py b/pypinfo/__init__.py index 8cec010..e4d1da9 100644 --- a/pypinfo/__init__.py +++ b/pypinfo/__init__.py @@ -1 +1 @@ -__version__ = '21.0.0' +__version__ = '22.0.0'