Skip to content

Commit

Permalink
Release version 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
spectras committed May 23, 2016
1 parent f1840a4 commit 6a2568d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
copyright = u'2011-2015, Kristian Øllegaard, Jonas Obrist & contributors'

version = '1.5'
release = '1.5.0'
release = '1.5.1'


# The name of the Pygments (syntax highlighting) style to use.
Expand Down
6 changes: 2 additions & 4 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,11 @@ The guideline is hvad supports all Django versions that are supported by the
Django team. This holds true for Long-Term Support releases as well. Support for
new versions will usually be introduced when they reach the beta stage.

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

- Django 1.4.22, running Python 2.7.
- Django 1.6.11, running Python 2.7 or 3.3.
- Django 1.7.10, running Python 2.7, 3.3 or 3.4.
- Django 1.8.6, running Python 2.7, 3.3, 3.4 or 3.5.
- Django 1.9.0beta, running Python 2.7, 3.4 or 3.5.
- Django 1.9.0, running Python 2.7, 3.4 or 3.5.

All tests are run against MySQL and PostgreSQL.

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
1 change: 1 addition & 0 deletions docs/public/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Fixes:
:meth:`~hvad.contrib.restframework.serializers.TranslationsMixin.update_translation`
so it does not bite when using (unsupported) m2m fields or generic relations in a
translation — :issue:`285`.
- Add missing unicode markers for python2 — :issue:`291`.

.. release 1.5.0
Expand Down
4 changes: 2 additions & 2 deletions hvad/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '1.5.0'
VERSION = (1, 5, 0)
__version__ = '1.5.1'
VERSION = (1, 5, 1)

0 comments on commit 6a2568d

Please sign in to comment.