diff --git a/docs/conf.py b/docs/conf.py index 424249ed..ab803ba7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -57,7 +57,7 @@ # The short X.Y version. version = '1.1' # The full version, including alpha/beta/rc tags. -release = '1.1.0' +release = '1.1.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/public/release_notes.rst b/docs/public/release_notes.rst index 2ad4dade..d60e46ef 100644 --- a/docs/public/release_notes.rst +++ b/docs/public/release_notes.rst @@ -2,10 +2,23 @@ Release Notes ############# +.. release 1.1.1 + +***************************** +1.1.1 - current release +***************************** + +Released on March 5, 2015 + +Fixes: + +- Backwards compatibility issue in get_field implementation — :issue:`233`. +- Admin no longer breaks on models using another ``pk`` field than ``id``. + .. release 1.1.0 ***************************** -1.1.0 - current release +1.1.0 ***************************** Released on February 17, 2015 diff --git a/hvad/__init__.py b/hvad/__init__.py index daca6d1c..3afbc8e9 100644 --- a/hvad/__init__.py +++ b/hvad/__init__.py @@ -1,2 +1,2 @@ -__version__ = '1.1.0' -VERSION = (1, 1, 0) +__version__ = '1.1.1' +VERSION = (1, 1, 1)