diff --git a/CHANGELOG.md b/CHANGELOG.md index abc91994..138951b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.24.1 (2022-01-10) +### Fix +* **docs:** Tutorial and README broken links #235 ([#238](https://github.com/imAsparky/django-cookiecutter/issues/238)) ([`034f522`](https://github.com/imAsparky/django-cookiecutter/commit/034f5229f0eb1b5b75be1f60bf651eef07e2eb41)) + ## v0.24.0 (2022-01-10) ### Feature * **tox:** Add proj test coverage and cleanup #233 ([#234](https://github.com/imAsparky/django-cookiecutter/issues/234)) ([`e31c3ff`](https://github.com/imAsparky/django-cookiecutter/commit/e31c3ffd6eaf7e57f2b512885239bf6aac83a89a)) diff --git a/docs/source/conf.py b/docs/source/conf.py index 6cf9623d..b9b2ba56 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -16,7 +16,7 @@ import sys sys.path.insert(0, os.path.abspath('.')) -__version__ = "0.24.0" +__version__ = "0.24.1" # -- Project information ----------------------------------------------------- diff --git a/setup.py b/setup.py index 34d296a8..8325f2d5 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import find_packages, setup -__version__ = "0.24.0" +__version__ = "0.24.1" setup( name="django-cookiecutter",