Changelog, release notes and contributor entry for #620

This commit is contained in:
Karl Hobley 2015-02-09 12:39:12 +00:00
parent 46e006dbd2
commit d4ab7e833f
3 changed files with 3 additions and 0 deletions

View file

@ -34,6 +34,7 @@ Changelog
* Fix: Storage backends that return raw ContentFile objects are now handled correctly when resizing images (@georgewhewell)
* Fix: Punctuation characters are no longer stripped when performing search queries
* Fix: When adding tags where there were none before, it is now possible to save a single tag with multiple words in it
* Fix: richtext template tag no longer raises TypeError if None is passed into it (Alejandro Varas)
0.8.4 (04.12.2014)
~~~~~~~~~~~~~~~~~~

View file

@ -42,6 +42,7 @@ Contributors
* georgewhewell
* Frank Wiles
* Sebastian Spiegel
* Alejandro Varas
Translators
===========

View file

@ -20,3 +20,4 @@ Bug fixes
* Storage backends that return raw ContentFile objects are now handled correctly when resizing images
* Punctuation characters are no longer stripped when performing search queries
* When adding tags where there were none before, it is now possible to save a single tag with multiple words in it
* ``richtext`` template tag no longer raises ``TypeError`` if ``None`` is passed into it