Merge pull request #24 from cookiecutter/master

update with upstream version `2022.03.14`
This commit is contained in:
Abdullah Adeel 2022-03-16 16:38:19 +05:00 committed by GitHub
commit 9fcd723ed9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 30 additions and 3 deletions

View File

@ -1252,5 +1252,10 @@
"name": "Artur Barseghyan", "name": "Artur Barseghyan",
"github_login": "barseghyanartur", "github_login": "barseghyanartur",
"twitter_username": "" "twitter_username": ""
},
{
"name": "innicoder",
"github_login": "innicoder",
"twitter_username": ""
} }
] ]

View File

@ -3,6 +3,21 @@ All enhancements and patches to Cookiecutter Django will be documented in this f
<!-- GENERATOR_PLACEHOLDER --> <!-- GENERATOR_PLACEHOLDER -->
## 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 ## 2022.03.08
### Updated ### Updated

View File

@ -887,6 +887,13 @@ Listed in alphabetical order.
</td> </td>
<td></td> <td></td>
</tr> </tr>
<tr>
<td>innicoder</td>
<td>
<a href="https://github.com/innicoder">innicoder</a>
</td>
<td></td>
</tr>
<tr> <tr>
<td>Irfan Ahmad</td> <td>Irfan Ahmad</td>
<td> <td>

View File

@ -5,7 +5,7 @@ except ImportError:
from distutils.core import setup from distutils.core import setup
# We use calendar versioning # We use calendar versioning
version = "2022.03.08" version = "2022.03.14"
with open("README.rst") as readme_file: with open("README.rst") as readme_file:
long_description = readme_file.read() long_description = readme_file.read()

View File

@ -46,7 +46,7 @@ To run the tests, check your test coverage, and generate an HTML coverage report
### Live reloading and Sass CSS compilation ### 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" %} {%- if cookiecutter.use_celery == "y" %}

View File

@ -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 djangorestframework==3.13.1 # https://github.com/encode/django-rest-framework
django-cors-headers==3.11.0 # https://github.com/adamchainz/django-cors-headers django-cors-headers==3.11.0 # https://github.com/adamchainz/django-cors-headers
# DRF-spectacular for api documentation # DRF-spectacular for api documentation
drf-spectacular==0.21.2 drf-spectacular==0.21.2 # https://github.com/tfranzel/drf-spectacular
{%- endif %} {%- endif %}