Skip to content

Commit 923cff9

Browse files
committed
Release v1.6.0
1 parent f83b6d9 commit 923cff9

File tree

4 files changed

+26
-16
lines changed

4 files changed

+26
-16
lines changed

.travis.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ python:
77
env:
88
- DJANGO=django==1.7.11 DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
99
- DJANGO=django==1.7.11 DRF=3.3.1 DATABASE_URL=postgres://postgres@localhost/test
10-
- DJANGO=django==1.8.13 DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
11-
- DJANGO=django==1.8.13 DRF=3.3.1 DATABASE_URL=postgres://postgres@localhost/test
12-
- DJANGO=django==1.9.7 DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
13-
- DJANGO=django==1.9.7 DRF=3.3.1 DATABASE_URL=postgres://postgres@localhost/test
14-
- DJANGO=https://github.com/django/django/archive/stable/1.10.x.tar.gz DRF=3.3.3 DATABASE_URL=mysql://root@localhost/test
15-
- DJANGO=https://github.com/django/django/archive/stable/1.10.x.tar.gz DRF=3.3.3 DATABASE_URL=postgres://postgres@localhost/test
10+
- DJANGO=django==1.8.14 DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
11+
- DJANGO=django==1.8.14 DRF=3.3.1 DATABASE_URL=postgres://postgres@localhost/test
12+
- DJANGO=django==1.9.9 DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
13+
- DJANGO=django==1.9.9 DRF=3.3.1 DATABASE_URL=postgres://postgres@localhost/test
14+
- DJANGO=django==1.10.1 DRF=3.3.3 DATABASE_URL=mysql://root@localhost/test
15+
- DJANGO=django==1.10.1 DRF=3.3.3 DATABASE_URL=postgres://postgres@localhost/test
1616

1717
sudo: false
1818
install:
@@ -30,13 +30,13 @@ after_success:
3030
matrix:
3131
exclude:
3232
- python: 3.3
33-
env: DJANGO=django==1.9.7 DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
33+
env: DJANGO=django==1.9.9 DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
3434
- python: 3.3
35-
env: DJANGO=django==1.9.7 DRF=3.3.1 DATABASE_URL=postgres://postgres@localhost/test
35+
env: DJANGO=django==1.9.9 DRF=3.3.1 DATABASE_URL=postgres://postgres@localhost/test
3636
- python: 3.3
37-
env: DJANGO=https://github.com/django/django/archive/stable/1.10.x.tar.gz DRF=3.3.3 DATABASE_URL=mysql://root@localhost/test
37+
env: DJANGO=django==1.10.1 DRF=3.3.3 DATABASE_URL=mysql://root@localhost/test
3838
- python: 3.3
39-
env: DJANGO=https://github.com/django/django/archive/stable/1.10.x.tar.gz DRF=3.3.3 DATABASE_URL=postgres://postgres@localhost/test
39+
env: DJANGO=django==1.10.1 DRF=3.3.3 DATABASE_URL=postgres://postgres@localhost/test
4040
- python: 3.5
4141
env: DJANGO=django==1.7.11 DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
4242
- python: 3.5

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Features
2626
* **Complete** - relationships, custom managers and querysets, proxy models, and abstract models.
2727
* **Batteries included** - translation-enabled forms and admin are provided.
2828
* **Reliable** - more than 300 test cases and counting. |coverage| |build|
29-
* **Compatible** with Django 1.4 to 1.9, running Python 2.7, 3.3, 3.4 or 3.5.
29+
* **Compatible** with Django 1.7 to 1.10, running Python 2.7, 3.3, 3.4 or 3.5.
3030

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

116-
* Stable branch 1.4, available through `PyPI`_ and git branch ``releases/1.4.x``.
117116
* Stable branch 1.5, available through `PyPI`_ and git branch ``releases/1.5.x``.
118-
* Development branch 1.6, available through git branch ``master``.
117+
* Stable branch 1.6, available through `PyPI`_ and git branch ``releases/1.6.x``.
118+
* Development branch 1.7, available through git branch ``master``.
119119

120120
Stable branches have minor bugfix releases as needed, with guaranteed compatibility.
121121
See the `installation guide`_ for details, or have a look at the `release notes`_.

docs/public/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Installation
77
Requirements
88
************
99

10-
* `Django`_ 1.4 or Django 1.7 or higher.
10+
* `Django`_ 1.7 or higher.
1111
* Python 2.7 or PyPy 1.5 or higher, Python 3.3 or higher.
1212

1313
************

docs/public/release_notes.rst

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,32 @@ Release Notes
44

55

66
*****************************
7-
1.6.0 - upcoming release
7+
1.6.0 - current release
88
*****************************
99

10+
Released on September 6, 2016
11+
12+
Python and Django versions supported:
13+
14+
- Support for Django 1.10 was added. It requires version 1.10.1 or better.
15+
- So, as a reminder, supported Django versions for this release are: 1.7, 1.8 LTS, 1.9, 1.10.x (for x ≥ 1).
16+
1017
Fixes:
1118

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

1725
.. release 1.5.1
1826
1927
*****************************
20-
1.5.1 - current release
28+
1.5.1
2129
*****************************
2230

31+
Released on May 23, 2016
32+
2333
Fixes:
2434

2535
- Filter out m2m and generic fields in

0 commit comments

Comments
 (0)