Skip to content

Commit ae94a98

Browse files
Merge branch 'cookiecutter:master' into master
2 parents ad91368 + 23ba1b1 commit ae94a98

File tree

5 files changed

+21
-4
lines changed

5 files changed

+21
-4
lines changed

CHANGELOG.md

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

44
<!-- GENERATOR_PLACEHOLDER -->
55

6+
## 2022.08.15
7+
8+
### Updated
9+
- Update coverage to 6.4.3 ([#3835](https://github.com/cookiecutter/cookiecutter-django/pull/3835))
10+
- Update pytz to 2022.2.1 ([#3840](https://github.com/cookiecutter/cookiecutter-django/pull/3840))
11+
- Update sentry-sdk to 1.9.4 ([#3838](https://github.com/cookiecutter/cookiecutter-django/pull/3838))
12+
13+
## 2022.08.09
14+
15+
### Updated
16+
- Update sentry-sdk to 1.9.3 ([#3837](https://github.com/cookiecutter/cookiecutter-django/pull/3837))
17+
18+
## 2022.08.05
19+
20+
### Updated
21+
- Update sentry-sdk to 1.9.2 ([#3832](https://github.com/cookiecutter/cookiecutter-django/pull/3832))
22+
623
## 2022.08.04
724

825
### Updated

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.08.04"
8+
version = "2022.08.15"
99

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

{{cookiecutter.project_slug}}/requirements/base.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pytz==2022.1 # https://github.com/stub42/pytz
1+
pytz==2022.2.1 # https://github.com/stub42/pytz
22
python-slugify==6.1.2 # https://github.com/un33k/python-slugify
33
Pillow==9.2.0 # https://github.com/python-pillow/Pillow
44
{%- if cookiecutter.frontend_pipeline == 'Django Compressor' %}

{{cookiecutter.project_slug}}/requirements/local.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ sphinx-autobuild==2021.3.14 # https://github.com/GaretJax/sphinx-autobuild
3535
# ------------------------------------------------------------------------------
3636
flake8==5.0.4 # https://github.com/PyCQA/flake8
3737
flake8-isort==4.2.0 # https://github.com/gforcada/flake8-isort
38-
coverage==6.4.2 # https://github.com/nedbat/coveragepy
38+
coverage==6.4.3 # https://github.com/nedbat/coveragepy
3939
black==22.6.0 # https://github.com/psf/black
4040
pylint-django==2.5.3 # https://github.com/PyCQA/pylint-django
4141
{%- if cookiecutter.use_celery == 'y' %}

{{cookiecutter.project_slug}}/requirements/production.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ mysqlclient==2.1.0 # https://github.com/PyMySQL/mysqlclient
1212
Collectfast==2.2.0 # https://github.com/antonagestam/collectfast
1313
{%- endif %}
1414
{%- if cookiecutter.use_sentry == "y" %}
15-
sentry-sdk==1.9.0 # https://github.com/getsentry/sentry-python
15+
sentry-sdk==1.9.4 # https://github.com/getsentry/sentry-python
1616
{%- endif %}
1717
{%- if cookiecutter.use_docker == "n" and cookiecutter.windows == "y" %}
1818
hiredis==2.0.0 # https://github.com/redis/hiredis-py

0 commit comments

Comments
 (0)