From ba9143158714a57a3876c33966bbd789fecd2e69 Mon Sep 17 00:00:00 2001 From: Marco Bonetti Date: Wed, 10 Jan 2018 21:23:49 +0100 Subject: [PATCH] version bump to 0.8.1 --- CHANGES | 8 ++++++++ rosetta/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) 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"