mirror of
https://github.com/Hopiu/django-rosetta.git
synced 2026-05-05 12:14:41 +00:00
Release 0.7.13
This commit is contained in:
parent
b88fd69f63
commit
de8bc76013
6 changed files with 7 additions and 12 deletions
|
|
@ -11,8 +11,6 @@ matrix:
|
|||
env: TOX_ENV=py36-django110
|
||||
- python: "3.6"
|
||||
env: TOX_ENV=py36-django111
|
||||
- python: "2.7"
|
||||
env: TOX_ENV=py27-django17
|
||||
- python: "2.7"
|
||||
env: TOX_ENV=py27-django18
|
||||
- python: "2.7"
|
||||
|
|
|
|||
6
CHANGES
6
CHANGES
|
|
@ -1,10 +1,10 @@
|
|||
Version History
|
||||
===============
|
||||
Version 0.7.13 (unreleased)
|
||||
---------------------------
|
||||
Version 0.7.13
|
||||
--------------
|
||||
* Search in comments, too (PR #174, thanks @torchingloom)
|
||||
* Added `ROSETTA_SHOW_AT_ADMIN_PANEL` setting to display add a link to Rosetta from the admin app index page. (PR #176, thanks @scream4ik)
|
||||
* Test against Django 1.11rc1
|
||||
* Test against Django 1.11
|
||||
* Template cleanup (Issue #181, thanks @Ecno92)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ Rosetta is a `Django <http://www.djangoproject.com/>`_ application that eases th
|
|||
|
||||
Because it doesn't export any models, Rosetta doesn't create any tables in your project's database. Rosetta can be installed and uninstalled by simply adding and removing a single entry in your project's `INSTALLED_APPS` and a single line in your main ``urls.py`` file.
|
||||
|
||||
Note: as of version 0.7.7 django-rosetta requires Django 1.7 or later. If you need support for earlier versions of Django (1.4+) you should stick to 0.7.6.
|
||||
Note: as of version 0.7.13 django-rosetta requires Django 1.8 or later.
|
||||
|
||||
********
|
||||
Features
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ master_doc = 'index'
|
|||
|
||||
# General information about the project.
|
||||
project = u'Django Rosetta'
|
||||
copyright = u'2008 – 2016 Marco Bonetti and contributors'
|
||||
copyright = u'2008 – 2017 Marco Bonetti and contributors'
|
||||
author = u'Marco Bonetti'
|
||||
|
||||
# The version info for the project you're documenting, acts as replacement for
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ Installation
|
|||
|
||||
Requirements
|
||||
------------
|
||||
* As of version 0.7.7, Rosetta supports Django 1.7 through 1.9. If you need support for earlier versions of Django (1.4+) you should stick to Rosetta 0.7.6.
|
||||
* As of version 0.7.13, Rosetta supports Django 1.8 through 1.11.
|
||||
|
||||
|
||||
Install Rosetta
|
||||
|
|
|
|||
5
tox.ini
5
tox.ini
|
|
@ -1,6 +1,5 @@
|
|||
[tox]
|
||||
envlist =
|
||||
py27-django17,
|
||||
{py27,py36}-django{18,19,110,111},
|
||||
gettext,docs
|
||||
|
||||
|
|
@ -16,12 +15,10 @@ setenv =
|
|||
PYTHONDONTWRITEBYTECODE=1
|
||||
|
||||
deps =
|
||||
|
||||
django17: Django==1.7.11
|
||||
django18: Django==1.8.11
|
||||
django19: Django==1.9.4
|
||||
django110: Django==1.10
|
||||
django111: Django==1.11rc1
|
||||
django111: Django==1.11
|
||||
|
||||
py27-django{17,18,19,110,111}: python-memcached
|
||||
py36-django{17,18,19,110,111}: python3-memcached
|
||||
|
|
|
|||
Loading…
Reference in a new issue