From bd4574e55a0d55e9bb366e8fa17257e4a7696bf4 Mon Sep 17 00:00:00 2001 From: alisayyah Date: Fri, 1 Apr 2022 15:37:51 +0430 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.5.0=20=E2=86=92=200.6.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.md | 2 +- django_urlconfchecks/__init__.py | 2 +- docs/usage.md | 2 +- pyproject.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) 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 "]