Skip to content

Commit 58e832f

Browse files
committed
Prepare for work on v1.6.
1 parent 7f0fdb5 commit 58e832f

File tree

7 files changed

+31
-26
lines changed

7 files changed

+31
-26
lines changed

.travis.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ python:
55
- 3.4
66
- 3.5
77
env:
8-
- DJANGO=django==1.7.10 DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
9-
- DJANGO=django==1.7.10 DRF=3.3.1 DATABASE_URL=postgres://postgres@localhost/test
10-
- DJANGO=django==1.8.6 DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
11-
- DJANGO=django==1.8.6 DRF=3.3.1 DATABASE_URL=postgres://postgres@localhost/test
12-
- DJANGO=https://github.com/django/django/tarball/stable/1.9.x DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
13-
- DJANGO=https://github.com/django/django/tarball/stable/1.9.x DRF=3.3.1 DATABASE_URL=postgres://postgres@localhost/test
8+
- DJANGO=django==1.7.11 DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
9+
- DJANGO=django==1.7.11 DRF=3.3.1 DATABASE_URL=postgres://postgres@localhost/test
10+
- DJANGO=django==1.8.9 DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
11+
- DJANGO=django==1.8.9 DRF=3.3.1 DATABASE_URL=postgres://postgres@localhost/test
12+
- DJANGO=django==1.9.2 DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
13+
- DJANGO=django==1.9.2 DRF=3.3.1 DATABASE_URL=postgres://postgres@localhost/test
1414

1515
sudo: false
1616
install:
@@ -28,10 +28,10 @@ after_success:
2828
matrix:
2929
exclude:
3030
- python: 3.3
31-
env: DJANGO=https://github.com/django/django/tarball/stable/1.9.x DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
31+
env: DJANGO=django==1.9.2 DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
3232
- python: 3.3
33-
env: DJANGO=https://github.com/django/django/tarball/stable/1.9.x DRF=3.3.1 DATABASE_URL=postgres://postgres@localhost/test
33+
env: DJANGO=django==1.9.2 DRF=3.3.1 DATABASE_URL=postgres://postgres@localhost/test
3434
- python: 3.5
35-
env: DJANGO=django==1.7.10 DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
35+
env: DJANGO=django==1.7.11 DRF=3.3.1 DATABASE_URL=mysql://root@localhost/test
3636
- python: 3.5
37-
env: DJANGO=django==1.7.10 DRF=3.3.1 DATABASE_URL=postgres://postgres@localhost/test
37+
env: DJANGO=django==1.7.11 DRF=3.3.1 DATABASE_URL=postgres://postgres@localhost/test

README.rst

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,10 +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.2, available through `PyPI`_ and git branch ``releases/1.2.x``.
117-
* Stable branch 1.3, available through `PyPI`_ and git branch ``releases/1.3.x``.
118116
* Stable branch 1.4, available through `PyPI`_ and git branch ``releases/1.4.x``.
119-
* Development branch 1.5, available through git branch ``master``.
117+
* Stable branch 1.5, available through `PyPI`_ and git branch ``releases/1.5.x``.
118+
* Development branch 1.6, available through git branch ``master``.
120119

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

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
project = u'django-hvad'
4545
copyright = u'2011-2015, Kristian Øllegaard, Jonas Obrist & contributors'
4646

47-
version = '1.5'
48-
release = '1.5.0'
47+
version = '1.6'
48+
release = '1.6.0'
4949

5050

5151
# The name of the Pygments (syntax highlighting) style to use.

docs/index.rst

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,11 @@ The guideline is hvad supports all Django versions that are supported by the
2020
Django team. This holds true for Long-Term Support releases as well. Support for
2121
new versions will usually be introduced when they reach the beta stage.
2222

23-
Thus, django-hvad 1.4 is tested on the following configurations:
23+
Thus, django-hvad 1.5 is tested on the following configurations:
2424

25-
- Django 1.4.22, running Python 2.7.
26-
- Django 1.6.11, running Python 2.7 or 3.3.
27-
- Django 1.7.10, running Python 2.7, 3.3 or 3.4.
28-
- Django 1.8.6, running Python 2.7, 3.3, 3.4 or 3.5.
29-
- Django 1.9.0beta, running Python 2.7, 3.4 or 3.5.
25+
- Django 1.7.11, running Python 2.7, 3.3 or 3.4.
26+
- Django 1.8.9, running Python 2.7, 3.3, 3.4 or 3.5.
27+
- Django 1.9.2, running Python 2.7, 3.4 or 3.5.
3028

3129
All tests are run against MySQL and PostgreSQL.
3230

docs/public/release_notes.rst

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,16 @@ Release Notes
55
.. release 1.5.0
66
77
*****************************
8-
1.5.0 - upcoming release
8+
1.5.0 - current release
99
*****************************
1010

11+
Released on February 2, 2016
12+
13+
Python and Django versions supported:
14+
15+
- Django 1.4 LTS is no longer supported.
16+
- So, as a reminder, supported Django versions for this release are: 1.7, 1.8 LTS, 1.9.
17+
1118
New features:
1219

1320
- It is now possible to specify a :ref:`custom translation base <custom-translation-models>`
@@ -42,7 +49,7 @@ Fixes:
4249
.. release 1.4.0
4350
4451
*****************************
45-
1.4.0 - current release
52+
1.4.0
4653
*****************************
4754

4855
Released on November 10, 2015

hvad/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = '1.5.0'
2-
VERSION = (1, 5, 0)
1+
__version__ = '1.6.0'
2+
VERSION = (1, 6, 0)

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
zip_safe=False,
2323
include_package_data = True,
2424
install_requires=[
25-
'Django>=1.4',
25+
'Django>=1.7',
2626
],
2727
classifiers = [
2828
"Development Status :: 5 - Production/Stable",
@@ -33,6 +33,7 @@
3333
"Programming Language :: Python :: 2.7",
3434
"Programming Language :: Python :: 3.3",
3535
"Programming Language :: Python :: 3.4",
36+
"Programming Language :: Python :: 3.5",
3637
"Topic :: Database",
3738
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
3839
"Topic :: Text Processing :: Linguistic",

0 commit comments

Comments
 (0)