diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1e3fb9d..67babf3 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.0 +current_version = 0.7.0 commit = True tag = True diff --git a/README.md b/README.md index a180a50..b588e54 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.6.0 + rev: 0.7.0 hooks: - id: django-urlconfchecks ``` diff --git a/django_urlconfchecks/__init__.py b/django_urlconfchecks/__init__.py index 88f0816..3bc61fd 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.6.0' +__version__ = '0.7.0' diff --git a/docs/usage.md b/docs/usage.md index 567ed47..8a5af38 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.6.0 + rev: 0.7.0 hooks: - id: django-urlconfchecks ``` diff --git a/pyproject.toml b/pyproject.toml index a95d764..e41e052 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool] [tool.poetry] name = "django-urlconfchecks" -version = "0.6.0" +version = "0.7.0" homepage = "https://github.com/AliSayyah/django-urlconfchecks" description = "a python package for type checking the urls and associated views." authors = ["ali sayyah "]