From 09aee9929fa409049cc19e67a7f7b715020561f2 Mon Sep 17 00:00:00 2001 From: Loic Teixeira Date: Tue, 22 Aug 2017 13:17:29 +1000 Subject: [PATCH] Release 0.1.2 (#17) --- CHANGELOG.md | 9 ++++++++- package.json | 2 +- wagtailmodelchoosers/__init__.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 39ffd3e..f541cda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Fixed ... +# [0.1.2] - 2017-08-22 + +### Fixed + +Infinite loop when the `display` option is an array. + # [0.1.1] - 2017-07-13 ### Fixed @@ -25,6 +31,7 @@ Compatibility with IE11 Initial Release -[Unreleased]: https://github.com/springload/wagtailmodelchoosers/compare/v0.1.1...HEAD +[Unreleased]: https://github.com/springload/wagtailmodelchoosers/compare/v0.1.2...HEAD +[0.1.2]: https://github.com/springload/wagtailmodelchoosers/compare/v0.1.1...v0.1.2 [0.1.1]: https://github.com/springload/wagtailmodelchoosers/compare/v0.1.0...v0.1.1 [0.1.0]: https://github.com/springload/wagtailmodelchoosers/compare/d6c8c2925e23a2473a1f051c6135fc72b1793761...v0.1.0 diff --git a/package.json b/package.json index 5bd7e3f..7e56d35 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wagtailmodelchoosers", - "version": "0.1.1", + "version": "0.1.2", "description": "Allows you to pick generic models (rather than snippets or pages)", "main": "setup.py", "keywords": [], diff --git a/wagtailmodelchoosers/__init__.py b/wagtailmodelchoosers/__init__.py index 00e508d..8011638 100644 --- a/wagtailmodelchoosers/__init__.py +++ b/wagtailmodelchoosers/__init__.py @@ -1,5 +1,5 @@ __title__ = 'wagtailmodelchoosers' -__version__ = '0.1.1' +__version__ = '0.1.2' __author__ = 'Springload' __license__ = 'MIT' __copyright__ = 'Copyright 2017 Springload'