Skip to content

Commit a00e504

Browse files
Merge branch 'cookiecutter:master' into master
2 parents 4afe2a8 + 1e1100c commit a00e504

File tree

15 files changed

+49
-16
lines changed

15 files changed

+49
-16
lines changed

.github/contributors.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1287,5 +1287,10 @@
12871287
"name": "Marcio Mazza",
12881288
"github_login": "marciomazza",
12891289
"twitter_username": "marciomazza"
1290+
},
1291+
{
1292+
"name": "Brandon Rumiser",
1293+
"github_login": "brumiser1550",
1294+
"twitter_username": ""
12901295
}
12911296
]

.github/workflows/update-contributors.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: python scripts/update_contributors.py
3232

3333
- name: Commit changes
34-
uses: stefanzweifel/git-auto-commit-action@v4.14.1
34+
uses: stefanzweifel/git-auto-commit-action@v4.15.0
3535
with:
3636
commit_message: Update Contributors
3737
file_pattern: CONTRIBUTORS.md .github/contributors.json

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repos:
99
- id: check-yaml
1010

1111
- repo: https://github.com/asottile/pyupgrade
12-
rev: v2.37.3
12+
rev: v2.38.2
1313
hooks:
1414
- id: pyupgrade
1515
args: [--py39-plus]

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,28 @@ All enhancements and patches to Cookiecutter Django will be documented in this f
33

44
<!-- GENERATOR_PLACEHOLDER -->
55

6+
## 2022.09.24
7+
8+
### Fixed
9+
- Remove `--no-deps` in pip wheels command of docs Dockerfile ([#3875](https://github.com/cookiecutter/cookiecutter-django/pull/3875))
10+
11+
## 2022.09.23
12+
13+
### Changed
14+
- Reload uvicorn on html file change ([#3866](https://github.com/cookiecutter/cookiecutter-django/pull/3866))
15+
- Mailjet default api url does not work out of the box ([#3871](https://github.com/cookiecutter/cookiecutter-django/pull/3871))
16+
### Updated
17+
- Auto-update pre-commit hooks ([#3872](https://github.com/cookiecutter/cookiecutter-django/pull/3872))
18+
- Update django-extensions to 3.2.1 ([#3867](https://github.com/cookiecutter/cookiecutter-django/pull/3867))
19+
- Update tox to 3.26.0 ([#3864](https://github.com/cookiecutter/cookiecutter-django/pull/3864))
20+
- Update drf-spectacular to 0.24.1 ([#3874](https://github.com/cookiecutter/cookiecutter-django/pull/3874))
21+
22+
## 2022.09.15
23+
24+
### Updated
25+
- Update watchfiles to 0.17.0 ([#3869](https://github.com/cookiecutter/cookiecutter-django/pull/3869))
26+
- Update drf-spectacular to 0.24.0 ([#3870](https://github.com/cookiecutter/cookiecutter-django/pull/3870))
27+
628
## 2022.09.05
729

830
### Updated

CONTRIBUTORS.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -376,6 +376,13 @@ Listed in alphabetical order.
376376
</td>
377377
<td></td>
378378
</tr>
379+
<tr>
380+
<td>Brandon Rumiser</td>
381+
<td>
382+
<a href="https://github.com/brumiser1550">brumiser1550</a>
383+
</td>
384+
<td></td>
385+
</tr>
379386
<tr>
380387
<td>Brent Payne</td>
381388
<td>

docs/developing-locally.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Setup with MySQL_
108108

109109
or if you're running asynchronously: ::
110110

111-
$ uvicorn config.asgi:application --host 0.0.0.0 --reload
111+
$ uvicorn config.asgi:application --host 0.0.0.0 --reload --reload-include '*.html'
112112

113113
.. _PostgreSQL: https://www.postgresql.org/download/
114114
.. _MySQL: https://dev.mysql.com/downloads/

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
sphinx==5.1.1
1+
sphinx==5.2.1
22
sphinx-rtd-theme==1.0.0

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pre-commit==2.20.0
1212

1313
# Testing
1414
# ------------------------------------------------------------------------------
15-
tox==3.25.1
15+
tox==3.26.0
1616
pytest==7.1.3
1717
pytest-cookies==0.6.1
1818
pytest-instafail==0.4.2

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from distutils.core import setup
66

77
# We use calendar versioning
8-
version = "2022.09.05"
8+
version = "2022.09.24"
99

1010
with open("README.rst") as readme_file:
1111
long_description = readme_file.read()

{{cookiecutter.project_slug}}/.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repos:
1010
- id: check-yaml
1111

1212
- repo: https://github.com/asottile/pyupgrade
13-
rev: v2.37.3
13+
rev: v2.38.2
1414
hooks:
1515
- id: pyupgrade
1616
args: [--py39-plus]

0 commit comments

Comments
 (0)