diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ea4d465..1e3fb9d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.0 +current_version = 0.6.0 commit = True tag = True diff --git a/README.md b/README.md index 5807e38..7931c57 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ Add the following to your `.pre-commit-config.yaml` file: ```yaml - repo: https://github.com/AliSayyah/django-urlconfchecks - rev: 0.5.0 + rev: 0.6.0 hooks: - id: django-urlconfchecks ``` diff --git a/django_urlconfchecks/__init__.py b/django_urlconfchecks/__init__.py index 9794e9c..88f0816 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.5.0' +__version__ = '0.6.0' diff --git a/docs/usage.md b/docs/usage.md index 07806e0..20ac6ec 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: 0.5.0 + rev: 0.6.0 hooks: - id: django-urlconfchecks ``` diff --git a/pyproject.toml b/pyproject.toml index 26b4074..7b8a04f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool] [tool.poetry] name = "django-urlconfchecks" -version = "0.5.0" +version = "0.6.0" homepage = "https://github.com/AliSayyah/django-urlconfchecks" description = "a python package for type checking the urls and associated views." authors = ["ali sayyah "]