Skip to content

Commit

Permalink
Release v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
spectras committed Sep 5, 2016
1 parent f83b6d9 commit 923cff9
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 16 deletions.
20 changes: 10 additions & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ python:
env:
- DJANGO=django==1.7.11 DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
- DJANGO=django==1.7.11 DRF=3.3.1 DATABASE_URL=postgres://postgres@localhost/test
- DJANGO=django==1.8.13 DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
- DJANGO=django==1.8.13 DRF=3.3.1 DATABASE_URL=postgres://postgres@localhost/test
- DJANGO=django==1.9.7 DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
- DJANGO=django==1.9.7 DRF=3.3.1 DATABASE_URL=postgres://postgres@localhost/test
- DJANGO=https://github.com/django/django/archive/stable/1.10.x.tar.gz DRF=3.3.3 DATABASE_URL=mysql://root@localhost/test
- DJANGO=https://github.com/django/django/archive/stable/1.10.x.tar.gz DRF=3.3.3 DATABASE_URL=postgres://postgres@localhost/test
- DJANGO=django==1.8.14 DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
- DJANGO=django==1.8.14 DRF=3.3.1 DATABASE_URL=postgres://postgres@localhost/test
- DJANGO=django==1.9.9 DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
- DJANGO=django==1.9.9 DRF=3.3.1 DATABASE_URL=postgres://postgres@localhost/test
- DJANGO=django==1.10.1 DRF=3.3.3 DATABASE_URL=mysql://root@localhost/test
- DJANGO=django==1.10.1 DRF=3.3.3 DATABASE_URL=postgres://postgres@localhost/test

sudo: false
install:
Expand All @@ -30,13 +30,13 @@ after_success:
matrix:
exclude:
- python: 3.3
env: DJANGO=django==1.9.7 DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
env: DJANGO=django==1.9.9 DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
- python: 3.3
env: DJANGO=django==1.9.7 DRF=3.3.1 DATABASE_URL=postgres://postgres@localhost/test
env: DJANGO=django==1.9.9 DRF=3.3.1 DATABASE_URL=postgres://postgres@localhost/test
- python: 3.3
env: DJANGO=https://github.com/django/django/archive/stable/1.10.x.tar.gz DRF=3.3.3 DATABASE_URL=mysql://root@localhost/test
env: DJANGO=django==1.10.1 DRF=3.3.3 DATABASE_URL=mysql://root@localhost/test
- python: 3.3
env: DJANGO=https://github.com/django/django/archive/stable/1.10.x.tar.gz DRF=3.3.3 DATABASE_URL=postgres://postgres@localhost/test
env: DJANGO=django==1.10.1 DRF=3.3.3 DATABASE_URL=postgres://postgres@localhost/test
- python: 3.5
env: DJANGO=django==1.7.11 DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
- python: 3.5
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Features
* **Complete** - relationships, custom managers and querysets, proxy models, and abstract models.
* **Batteries included** - translation-enabled forms and admin are provided.
* **Reliable** - more than 300 test cases and counting. |coverage| |build|
* **Compatible** with Django 1.4 to 1.9, running Python 2.7, 3.3, 3.4 or 3.5.
* **Compatible** with Django 1.7 to 1.10, running Python 2.7, 3.3, 3.4 or 3.5.

Django-hvad also features support for `Django REST framework`_ 3.1 or newer, including
translation-aware serializers.
Expand Down Expand Up @@ -113,9 +113,9 @@ Releases
Django-hvad uses the same release pattern as Django. The following versions
are thus available:

* Stable branch 1.4, available through `PyPI`_ and git branch ``releases/1.4.x``.
* Stable branch 1.5, available through `PyPI`_ and git branch ``releases/1.5.x``.
* Development branch 1.6, available through git branch ``master``.
* Stable branch 1.6, available through `PyPI`_ and git branch ``releases/1.6.x``.
* Development branch 1.7, available through git branch ``master``.

Stable branches have minor bugfix releases as needed, with guaranteed compatibility.
See the `installation guide`_ for details, or have a look at the `release notes`_.
Expand Down
2 changes: 1 addition & 1 deletion docs/public/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Installation
Requirements
************

* `Django`_ 1.4 or Django 1.7 or higher.
* `Django`_ 1.7 or higher.
* Python 2.7 or PyPy 1.5 or higher, Python 3.3 or higher.

************
Expand Down
14 changes: 12 additions & 2 deletions docs/public/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,32 @@ Release Notes


*****************************
1.6.0 - upcoming release
1.6.0 - current release
*****************************

Released on September 6, 2016

Python and Django versions supported:

- Support for Django 1.10 was added. It requires version 1.10.1 or better.
- So, as a reminder, supported Django versions for this release are: 1.7, 1.8 LTS, 1.9, 1.10.x (for x ≥ 1).

Fixes:

- No longer set ``master`` to ``NULL`` before clearing translations when using
:meth:`~hvad.manager.TranslationManager.delete_translations`. This only
triggers one query instead of two, and allows enforcing non-null foreign key
at the database level.
- Django system checks are now run in the test suite in addition to hvad's tests.

.. release 1.5.1
*****************************
1.5.1 - current release
1.5.1
*****************************

Released on May 23, 2016

Fixes:

- Filter out m2m and generic fields in
Expand Down

0 comments on commit 923cff9

Please sign in to comment.