Skip to content

Commit

Permalink
Release v1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
seddonym committed Aug 18, 2023
1 parent 8f4cdd3 commit 678f3ba
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

1.11.0 (2023-08-18)
-------------------

* Update to Grimp 3.0.

1.11b1 (2023-08-17)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = '1.11b1'
release = '1.11.0'


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "import-linter"
version = "1.11b1"
version = "1.11.0"
license = {text = "BSD 2-Clause License"}
description = "Enforces rules for the imports within and between Python packages."
authors = [
Expand All @@ -13,7 +13,7 @@ authors = [
requires-python = ">=3.8"
dependencies = [
"click>=6",
"grimp>=3.0b3",
"grimp>=3.0",
"tomli>=1.2.1; python_version < '3.11'",
"typing-extensions>=3.10.0.0",
]
Expand Down
2 changes: 1 addition & 1 deletion src/importlinter/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.11b1"
__version__ = "1.11.0"

from .application import output # noqa
from .domain import fields # noqa
Expand Down

0 comments on commit 678f3ba

Please sign in to comment.