From 95b1c4386080ba50242f0d2c15099774877c82d3 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 10 Mar 2022 02:28:40 +0000 Subject: [PATCH 1/6] Release 2022.03.09 --- CHANGELOG.md | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e88be236..4280feb1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 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/setup.py b/setup.py index 1b023704c..56f8802dd 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.09" with open("README.rst") as readme_file: long_description = readme_file.read() From 49956db9481c6cf8103de3e4b63b2c48ddc25a6e Mon Sep 17 00:00:00 2001 From: Andrew Chen Wang <60190294+Andrew-Chen-Wang@users.noreply.github.com> Date: Sun, 13 Mar 2022 05:56:23 -0400 Subject: [PATCH 2/6] Add DRF spectacular link in requirements (#3630) --- {{cookiecutter.project_slug}}/requirements/base.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 %} From 91e260333976713c51f5a3d08627d13e8d781417 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 14 Mar 2022 02:23:26 +0000 Subject: [PATCH 3/6] Release 2022.03.13 --- CHANGELOG.md | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4280feb1b..1a202341c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2022.03.13 + +### Changed +- Add DRF spectacular link in requirements ([#3630](https://github.com/cookiecutter/cookiecutter-django/pull/3630)) + ## 2022.03.09 ### Changed diff --git a/setup.py b/setup.py index 56f8802dd..007e8d879 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.09" +version = "2022.03.13" with open("README.rst") as readme_file: long_description = readme_file.read() From 0b934b383ef23322aa62b7eedd5f7ac2aaa5e7ae Mon Sep 17 00:00:00 2001 From: innicoder <100089381+innicoder@users.noreply.github.com> Date: Mon, 14 Mar 2022 18:16:00 +0100 Subject: [PATCH 4/6] Fix broken link in README of generated projects (#3634) --- {{cookiecutter.project_slug}}/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" %} From e7db2cd6b0d3b6019ef70fafcf9cfc519f323e87 Mon Sep 17 00:00:00 2001 From: browniebroke Date: Mon, 14 Mar 2022 17:17:00 +0000 Subject: [PATCH 5/6] Update Contributors --- .github/contributors.json | 5 +++++ CONTRIBUTORS.md | 7 +++++++ 2 files changed, 12 insertions(+) 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/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 From 24bf66a1018e550bd26148901998f98f1a9bb832 Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 15 Mar 2022 02:25:08 +0000 Subject: [PATCH 6/6] Release 2022.03.14 --- CHANGELOG.md | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a202341c..84e61e6c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ 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 diff --git a/setup.py b/setup.py index 007e8d879..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.13" +version = "2022.03.14" with open("README.rst") as readme_file: long_description = readme_file.read()