Skip to content

Commit

Permalink
Merge branch 'release/5.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
JackMorganNZ committed Oct 31, 2022
2 parents 70e3e8b + 0b01e0e commit 783343b
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 9 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 5.0.2

- Add Plausible analytics.
- Dependency updates:
- Update autoprefixer from 10.4.12 to 10.4.13.
- Update cssnano from 5.1.13 to 5.1.14.
- Update django from 3.2.15 to 3.2.16.
- Update psycopg2 from 2.9.4 to 2.9.5.
- Update pytz from 2022.4 to 2022.5.
- Update pytest from 7.1.3 to 7.2.0.

## 5.0.1

- Fix bug where a sequence of code characters could stop the JavaScript file from parsing correctly.
Expand Down
2 changes: 1 addition & 1 deletion codewof/config/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Configuration for Django system."""

__version__ = "5.0.1"
__version__ = "5.0.2"
__version_info__ = tuple(
[
int(num) if num.isdigit() else num
Expand Down
4 changes: 2 additions & 2 deletions codewof/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
"dependencies": {},
"devDependencies": {
"ansi-colors": "4.1.3",
"autoprefixer": "10.4.12",
"autoprefixer": "10.4.13",
"bootstrap": "4.6.2",
"browserify": "17.0.0",
"child_process": "1.0.2",
"clipboard": "2.0.11",
"codemirror": "5.65.1",
"cssnano": "5.1.13",
"cssnano": "5.1.14",
"details-element-polyfill": "2.4.0",
"fancy-log": "2.0.0",
"fuse.js": "6.6.2",
Expand Down
4 changes: 2 additions & 2 deletions codewof/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
<meta name="msapplication-config" content="{% static 'img/favicon/browserconfig.xml' %}">
<meta name="theme-color" content="#ffffff">

{% if DEPLOYED %}
<!-- Analytics -->
{% if PRODUCTION_ENVIRONMENT %}
<script defer data-domain="codewof.co.nz" src="https://plausible.io/js/plausible.js"></script>
{% endif %}

<!-- Styling -->
Expand Down
6 changes: 3 additions & 3 deletions requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Django
django==3.2.15
django==3.2.16
django-environ==0.9.0
django-model-utils==4.2.0
django-anymail[mailgun]==8.6
Expand All @@ -21,7 +21,7 @@ gunicorn==20.1.0
whitenoise==6.2.0

# Database APIs
psycopg2==2.9.4
psycopg2==2.9.5

# Content loading
verto==1.0.1
Expand All @@ -35,7 +35,7 @@ flake8-quotes==3.3.1
pep8-naming==0.13.2

# Other
pytz==2022.4
pytz==2022.5
python-dateutil==2.8.2
argon2-cffi==21.3.0

Expand Down
2 changes: 1 addition & 1 deletion requirements/local.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Testing
# ------------------------------------------------------------------------------
mypy==0.982 # https://github.com/python/mypy
pytest==7.1.3 # https://github.com/pytest-dev/pytest
pytest==7.2.0 # https://github.com/pytest-dev/pytest
pytest-sugar==0.9.5 # https://github.com/Frozenball/pytest-sugar

# Code quality
Expand Down

0 comments on commit 783343b

Please sign in to comment.