Skip to content

Commit

Permalink
Merge pull request #41 from PaesslerAG/release0.5.0
Browse files Browse the repository at this point in the history
Release 0.5.0
  • Loading branch information
belugame authored Feb 26, 2020
2 parents 51edbf5 + 67c5ce0 commit 290c564
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ differences (as of django-cuser v.2017.3.16):

Release Notes
-------------
* 0.5.0
- add support for update on save (thank you @felubra)
- no longer build on Python 3.5, deprecated

* 0.4.3 - add support for Django 3.0

* 0.4.2 - Minor fix for supported Django and Python versions
Expand Down Expand Up @@ -129,7 +133,7 @@ Setting up all Python versions
sudo apt-get -y install software-properties-common
sudo add-apt-repository ppa:fkrull/deadsnakes
sudo apt-get update
for version in 3.5 3.6 3.7; do
for version in 3.6 3.7; do
py=python$version
sudo apt-get -y install ${py} ${py}-dev
done
Expand Down
2 changes: 1 addition & 1 deletion django_currentuser/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.4.3'
__version__ = '0.5.0'
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django
[tox]
envlist =
py{27,35,36,37}-django111,
py{35,36,37}-django21,
py{35,36,37}-django22,
py{35,36,37}-django30,
py{27,36,37}-django111,
py{36,37}-django21,
py{36,37}-django22,
py{36,37}-django30,

[testenv]
commands =
Expand Down

0 comments on commit 290c564

Please sign in to comment.