Merge pull request #79 from twisted/release-update

Release version 22.10.0 with Mypy type checking included
This commit is contained in:
Glyph 2022-10-15 00:44:40 -07:00 committed by GitHub
commit 19a308d70d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 21 additions and 5 deletions

View File

@ -1,3 +1,18 @@
Incremental 22.10.0 (2022-10-15)
================================
No significant changes.
Incremental 22.10.0.rc1 (2022-10-04)
====================================
Features
--------
- Incremental now supports type-checking with Mypy (#69)
Incremental 21.3.0 (2021-03-01)
===============================

View File

@ -8,3 +8,8 @@ build-backend = "setuptools.build_meta"
[tool.black]
target-version = ['py27', 'py36', 'py37', 'py38']
[tool.towncrier]
filename = "NEWS.rst"
package_dir = "src/"
package = "incremental"

View File

@ -7,5 +7,5 @@ Provides Incremental version information.
from incremental import Version
__version__ = Version("Incremental", 21, 3, 0)
__version__ = Version("Incremental", 22, 10, 0, post=0)
__all__ = ["__version__"]

View File

@ -1,4 +0,0 @@
[towncrier]
filename = NEWS.rst
package_dir = src/
package = incremental