diff --git a/.github/contributors.json b/.github/contributors.json
index d3db1476f..ad83662dd 100644
--- a/.github/contributors.json
+++ b/.github/contributors.json
@@ -1252,5 +1252,10 @@
"name": "Artur Barseghyan",
"github_login": "barseghyanartur",
"twitter_username": ""
+ },
+ {
+ "name": "innicoder",
+ "github_login": "innicoder",
+ "twitter_username": ""
}
]
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3e88be236..84e61e6c6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,21 @@ All enhancements and patches to Cookiecutter Django will be documented in this f
+## 2022.03.14
+
+### Fixed
+- Fix broken link in README of generated projects ([#3634](https://github.com/cookiecutter/cookiecutter-django/pull/3634))
+
+## 2022.03.13
+
+### Changed
+- Add DRF spectacular link in requirements ([#3630](https://github.com/cookiecutter/cookiecutter-django/pull/3630))
+
+## 2022.03.09
+
+### Changed
+- Fix a few typos in the documentation ([#3625](https://github.com/cookiecutter/cookiecutter-django/pull/3625))
+
## 2022.03.08
### Updated
diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md
index fd5156781..c33bf9e12 100644
--- a/CONTRIBUTORS.md
+++ b/CONTRIBUTORS.md
@@ -887,6 +887,13 @@ Listed in alphabetical order.
|
+
+ innicoder |
+
+ innicoder
+ |
+ |
+
Irfan Ahmad |
diff --git a/setup.py b/setup.py
index 1b023704c..99e054595 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ except ImportError:
from distutils.core import setup
# We use calendar versioning
-version = "2022.03.08"
+version = "2022.03.14"
with open("README.rst") as readme_file:
long_description = readme_file.read()
diff --git a/{{cookiecutter.project_slug}}/README.md b/{{cookiecutter.project_slug}}/README.md
index 969520961..557194877 100644
--- a/{{cookiecutter.project_slug}}/README.md
+++ b/{{cookiecutter.project_slug}}/README.md
@@ -46,7 +46,7 @@ To run the tests, check your test coverage, and generate an HTML coverage report
### Live reloading and Sass CSS compilation
-Moved to [Live reloading and SASS compilation](http://cookiecutter-django.readthedocs.io/en/latest/live-reloading-and-sass-compilation.html).
+Moved to [Live reloading and SASS compilation](https://cookiecutter-django.readthedocs.io/en/latest/developing-locally.html#sass-compilation-live-reloading).
{%- if cookiecutter.use_celery == "y" %}
diff --git a/{{cookiecutter.project_slug}}/requirements/base.txt b/{{cookiecutter.project_slug}}/requirements/base.txt
index 0c8708492..695a86e1c 100644
--- a/{{cookiecutter.project_slug}}/requirements/base.txt
+++ b/{{cookiecutter.project_slug}}/requirements/base.txt
@@ -44,5 +44,5 @@ django-redis==5.2.0 # https://github.com/jazzband/django-redis
djangorestframework==3.13.1 # https://github.com/encode/django-rest-framework
django-cors-headers==3.11.0 # https://github.com/adamchainz/django-cors-headers
# DRF-spectacular for api documentation
-drf-spectacular==0.21.2
+drf-spectacular==0.21.2 # https://github.com/tfranzel/drf-spectacular
{%- endif %}
|