diff --git a/CHANGELOG.rst b/CHANGELOG.rst index edbfbb56..86e33e82 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,11 @@ +0.19.0 2016-06-15 +~~~~~~~~~~~~~~~~~ + +* Flake8 >= 2.5.0 support +* Drop django 1.7 support +* Tested on django 1.10 +* Add suppport for `.add_arguments` from custom test runner for `jenkins` command + 0.18.0 1985-10-26 ~~~~~~~~~~~~~~~~~ diff --git a/README.rst b/README.rst index cf5cb50b..fa905d64 100644 --- a/README.rst +++ b/README.rst @@ -135,22 +135,14 @@ Here is the reporters prebuild with django-jenkins Changelog --------- -GIT Version -~~~~~~~~~~~ -* Flake8 >= 2.5.0 support -* Drop django 1.7 support - - -0.18.0 1985-10-26 +0.19.0 2016-06-15 ~~~~~~~~~~~~~~~~~ -* An exceptional release for the last 5 years issued not on 15th day of a month -* Drop python 2.6 support -* Drop django 1.6 support -* Add django 1.9 compatibility -* Drop scss-lint support (the tool no longer has xml output) -* Coverage>=4 compatibility +* Flake8 >= 2.5.0 support +* Drop django 1.7 support +* Tested on django 1.10 +* Add suppport for `.add_arguments` from custom test runner for `jenkins` command Contribution guide diff --git a/tox.ini b/tox.ini index 18a59d06..4304d708 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{27,34,35}-{dj18,dj19} +envlist = py{27,34,35}-{dj18,dj19,dj110} skipsdist = True [testenv] @@ -9,15 +9,16 @@ basepython = py35: python3.5 commands = python tests/manage.py {posargs:jenkins --enable-coverage --pep8-max-line-length=150 --liveserver=localhost:8090-8100 --output-dir=reports/{envname} --testrunner=tests.runner.CustomTestRunner --ok} deps = - dj18: django==1.8.11 - dj19: django==1.9.4 - pylint==1.5.4 + dj18: django==1.8.13 + dj19: django==1.9.7 + dj110: django==1.10a1 + pylint==1.5.6 pylint-django==0.7.1 - coverage==4.0.3 - pyflakes==1.1.0 + coverage==4.1 + pyflakes==1.2.3 pep8==1.7.0 - flake8==2.5.4 - selenium==2.52.0 + flake8==2.5.5 + selenium==2.53.5 pyvirtualdisplay==0.2 ipdb passenv=HOME