diff --git a/.travis.yml b/.travis.yml index aa76d86..69576f6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,8 +12,8 @@ env: - TOX_ENV=py34-django16 - TOX_ENV=py27-django17 - TOX_ENV=py34-django17 - - TOX_ENV=py27-django18c1 - - TOX_ENV=py34-django18c1 + - TOX_ENV=py27-django18 + - TOX_ENV=py34-django18 install: - pip install tox script: diff --git a/CHANGES b/CHANGES index 137c9e9..ac17c0f 100644 --- a/CHANGES +++ b/CHANGES @@ -1,9 +1,10 @@ -Version 0.7.6 (unreleased) --------------------------- +Version 0.7.6 +------------- * Added support for the Free Google Translate API (PR #117, thanks @cuchac) * Probable fix for apps defined by their AppConfig causing havoc in Django 1.7 and later (Issues #113 and #125) * Test configuration improved to test against Django 1.8 beta 1 and Django 1.7.5 * Require polib >= 1.0.6 (PR #127, thanks @NotSqrt) +* Test against Django 1.8 final Version 0.7.5 diff --git a/README.rst b/README.rst index c4c25eb..3e2c3dd 100644 --- a/README.rst +++ b/README.rst @@ -24,7 +24,7 @@ Features Requirements ************ -* Rosetta supports Django 1.4 through 1.8a. +* Rosetta supports Django 1.4 through 1.8. ************ diff --git a/rosetta/__init__.py b/rosetta/__init__.py index aba94ef..5aeec33 100644 --- a/rosetta/__init__.py +++ b/rosetta/__init__.py @@ -1,4 +1,4 @@ -VERSION = (0, 7, 5) +VERSION = (0, 7, 6) def get_version(svn=False, limit=3): diff --git a/tox.ini b/tox.ini index 6500446..3d27c2c 100644 --- a/tox.ini +++ b/tox.ini @@ -2,7 +2,7 @@ envlist = {py26,py27}-django14, {py26,py27,py34}-django{15,16}, - {py27,py34}-django{17,18c1}, + {py27,py34}-django{17,18}, gettext skipsdist = True @@ -21,9 +21,9 @@ deps = django15: Django==1.5.12 django16: Django==1.6.11 django17: Django==1.7.7 - django18c1: https://www.djangoproject.com/download/1.8c1/tarball/ - {py26,py27}-django{14,15,16,17,18c1}: python-memcached - py34-django{14,15,16,17,18c1}: python3-memcached + django18: Django==1.8 + {py26,py27}-django{14,15,16,17,18}: python-memcached + py34-django{14,15,16,17,18}: python3-memcached requests polib>=1.0.6 microsofttranslator==0.5