diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c34b48c..7ea00a2 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.0 +current_version = 0.11.0 commit = True tag = True diff --git a/README.md b/README.md index 40934fe..ab3b90f 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ Add the following to your `.pre-commit-config.yaml` file: ```yaml - repo: https://github.com/AliSayyah/django-urlconfchecks - rev: v0.10.0 + rev: v0.11.0 hooks: - id: django-urlconfchecks ``` diff --git a/django_urlconfchecks/__init__.py b/django_urlconfchecks/__init__.py index 85304d2..d21cf4a 100644 --- a/django_urlconfchecks/__init__.py +++ b/django_urlconfchecks/__init__.py @@ -2,4 +2,4 @@ __author__ = """ali sayyah""" __email__ = 'ali.sayyah2@gmail.com' -__version__ = '0.10.0' +__version__ = '0.11.0' diff --git a/docs/usage.md b/docs/usage.md index d0191e2..10de5b8 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -57,7 +57,7 @@ Then, add the following to your `.pre-commit-config.yaml` file: ```yaml - repo: https://github.com/AliSayyah/django-urlconfchecks - rev: v0.10.0 + rev: v0.11.0 hooks: - id: django-urlconfchecks ``` diff --git a/pyproject.toml b/pyproject.toml index 4a1d649..0898723 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool] [tool.poetry] name = "django-urlconfchecks" -version = "0.10.0" +version = "0.11.0" homepage = "https://github.com/AliSayyah/django-urlconfchecks" description = "a python package for type checking the urls and associated views." authors = ["ali sayyah "]