diff --git a/CHANGELOG.rst b/CHANGELOG.rst index bb55bd3..10006c9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,8 +1,8 @@ Changelog ========= -latest ------- +2.1 (2024-10-8) +--------------- * Add support for wildcards in forbidden and independence contracts. * Formally support Python 3.13. diff --git a/docs/conf.py b/docs/conf.py index c2d97e1..294b042 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -27,7 +27,7 @@ # The short X.Y version version = '' # The full version, including alpha/beta/rc tags -release = '2.0' +release = '2.1' # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 928c650..373facc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "import-linter" -version = "2.0" +version = "2.1" license = {text = "BSD 2-Clause License"} description = "Enforces rules for the imports within and between Python packages." authors = [ diff --git a/src/importlinter/__init__.py b/src/importlinter/__init__.py index eb78b3f..8e5a0b4 100644 --- a/src/importlinter/__init__.py +++ b/src/importlinter/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.0" +__version__ = "2.1" from .application import output # noqa from .domain import fields # noqa