Skip to content

Commit

Permalink
Merge pull request #264 from dokterbob/0.8
Browse files Browse the repository at this point in the history
0.8 beta release
  • Loading branch information
dokterbob authored Nov 17, 2018
2 parents 55a3f46 + e748ed7 commit 30c3ec3
Show file tree
Hide file tree
Showing 9 changed files with 159 additions and 150 deletions.
16 changes: 14 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ python:
env:
- DJANGO="Django<1.12" # Django 1.11.x
- DJANGO="Django<2.1" # Django 2.0.x
- DJANGO="Django<2.2" # Django 2.1.2 LTS
- DJANGO="Django<2.2" # Django 2.1.x LTS

cache:
directories:
Expand All @@ -20,13 +20,25 @@ cache:
matrix:
exclude:
# Only supported Python/Django combinations
- env: DJANGO="Django<1.12"
python: 3.7
- env: DJANGO="Django<2.1"
python: 2.7
- env: DJANGO="Django<2.2"
python: 2.7
- env: DJANGO="Django<2.2"
python: 3.4

include:
# Travis workaround for Python 3.7 support.
# https://github.com/travis-ci/travis-ci/issues/9069#issuecomment-425720905
- python: 3.7
sudo: required
dist: xenial
env: DJANGO="Django<2.1"
- python: 3.7
sudo: required
dist: xenial
env: DJANGO="Django<2.2"

# command to install dependencies
install:
Expand Down
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changes
=======

0.8b1 (17-11-2018)
------------------

- Django 2.1 support (#257).
- Python 3.7 support (#256).

0.7 (13-07-2018)
------------------

Expand Down
3 changes: 2 additions & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ surlex = ">=0.2.0"
sorl-thumbnail = ">=11.12.1b"
six = "*"
unicodecsv = "<0.15"
Django = ">=1.8.19"
Django = ">=1.11.16"
Pillow = "*"
pip = "==18.0"

[dev-packages]
142 changes: 62 additions & 80 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Compatibility
=============
Currently, django-newsletter is officially supported for Django 1.11 and Django 2.0 with
Django 2.1 support pending. We support Python
2.7, 3.4, 3.5, 3.6 with 3.7 untested (ref #256).
2.7, 3.4, 3.5, 3.6 and 3.7.

Requirements
============
Expand Down
3 changes: 3 additions & 0 deletions RELENG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ Steps

#. Pick release date.
#. Create milestone on GitHub, organise open tickets.
#. Push source translations to Transifex::
$ django-admin makemessages -l en
$ tx push -s
#. Send out announcement to translators on Transifex.
#. Bump version in :code:`setup.py`.
#. Update supported Django/Python releases to match Django's.
Expand Down
Loading

0 comments on commit 30c3ec3

Please sign in to comment.