diff --git a/CHANGES b/CHANGES index 109948e..79cb320 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,14 @@ Version History =============== +Version 0.8.1 +------------- +* PR #194, thanks again @jbaldivieso! + + * Allow searching for plural strings, both in the original and translation. (Fixes #186) + * HTML-encoding ampersands in the template (minor regression introduced with 0.8.0) + * Stop showing "None" in the search input if there was no search query submitted + Version 0.8.0 -------------- * PR #194, huge thanks to @jbaldivieso: diff --git a/rosetta/__init__.py b/rosetta/__init__.py index 405c6ca..272194d 100644 --- a/rosetta/__init__.py +++ b/rosetta/__init__.py @@ -1,4 +1,4 @@ -VERSION = (0, 8, 0) +VERSION = (0, 8, 1) default_app_config = "rosetta.apps.RosettaAppConfig"