Skip to content

Commit

Permalink
Updated workflow to test on Django 4.2 (#442)
Browse files Browse the repository at this point in the history
* Updated workflow to test on Django 4.2

* Bump version and update tests

* Test with Python 3.8
  • Loading branch information
selwin authored May 30, 2023
1 parent 52b2900 commit 7499327
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 8 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@ jobs:
name: Python${{ matrix.python-version }}/Django${{ matrix.django-version }}
strategy:
matrix:
python-version: ["3.7", "3.10"]
django-version: ["3.2", "4.0", "4.1"]
exclude:
- python-version: 3.7
django-version: 4.0
- python-version: 3.7
django-version: 4.1
python-version: ["3.8", "3.10"]
django-version: ["3.2", "4.0", "4.1", "4.2"]
# exclude:
# - python-version: 3.7
# django-version: 4.0
# - python-version: 3.7
# django-version: 4.1
# - python-version: 3.8
# django-version: 4.2

steps:
- uses: actions/checkout@v3
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog
=========

Version 3.7.0 (2023-05-30)
--------------------------
* Changed JSON columns to use Django's `JSONField` and drop `jsonfield` dependency. Thanks @jrief!
* Fixed saving HTML emails that have `quoted_printable`. Thanks @gabn88!
* Fixes an issue where emails are rendered without context in Django's admin interface. Thanks @zagl!
* This version no longer supports Django 3.1.

Version 3.6.3 (2022-10-27)
--------------------------
* Fixed an issue where emails may not be rendered with context. Thanks @zagl!
Expand Down
2 changes: 1 addition & 1 deletion post_office/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3, 6, 3
3, 7, 0

0 comments on commit 7499327

Please sign in to comment.