From fad58e880755bb44c125a5d08b5d45a6aaae149f Mon Sep 17 00:00:00 2001 From: Danny Lin Date: Mon, 10 Apr 2023 20:28:10 +0800 Subject: [PATCH] Release 1.11.0 --- CHANGELOG.md | 9 +++++++++ webscrapbook/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 16f0c8c6..6f2a8d0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,15 @@ * Versions before 1.0 are in initial development. APIs are not stable for these versions, even a `y` version can involve a breaking change, and only partial notable changes are summarized in this document. See full commit history in the source repository for details. * Client requirement in this document refers to the version of [`WebScrapBook`](https://github.com/danny0838/webscrapbook) browser extension. +## [1.11.0] - 2023-04-10 +* Fixes and updates for the search page: + * Fixed outdated browser support information. + * `create:` and `modify:` conditions are now "or"-connected. + * `book:` conditions are now matched by book ID. + * Search results are now shown in the order of provided `book:` conditions. + * A bad input for `sort:` and `limit:` is now forbidden. +* Fixed bad response for a user without read permission when visiting with an unknown action. + ## [1.10.1] - 2023-04-08 * Fixed a packaging error causing a missing subpackage. diff --git a/webscrapbook/__init__.py b/webscrapbook/__init__.py index 056e148b..9ecc09f1 100644 --- a/webscrapbook/__init__.py +++ b/webscrapbook/__init__.py @@ -8,7 +8,7 @@ __all__ = ['WSB_EXTENSION_MIN_VERSION', 'WSB_USER_DIR', 'WSB_USER_CONFIG', 'WSB_DIR', 'WSB_CONFIG', 'config'] -__version__ = '1.10.1' +__version__ = '1.11.0' WSB_EXTENSION_MIN_VERSION = '0.79.0' WSB_USER_DIR = os.path.join(os.path.expanduser('~'), '.config', 'wsb') # affected by $HOME