From b9e1840760cb0a8354b666883ac74afaf3302bcf Mon Sep 17 00:00:00 2001 From: Florian Scherf Date: Mon, 4 Oct 2021 19:23:55 +0200 Subject: [PATCH] release 1.7.3 Signed-off-by: Florian Scherf --- doc/content/changelog.rst | 32 ++++++++++++++++++++++++++++++++ lona/__init__.py | 2 +- 2 files changed, 33 insertions(+), 1 deletion(-) diff --git a/doc/content/changelog.rst b/doc/content/changelog.rst index 19ed9a2f..7a62a5fb 100644 --- a/doc/content/changelog.rst +++ b/doc/content/changelog.rst @@ -5,6 +5,38 @@ search_index_weight: -10 Changelog ========= +.. changelog-header:: 1.7.3 (2021-10-08) + + +Changes +~~~~~~~ + +* views + + * View events were added + +* static files + + * Lona now logs an error if static file names are not unique + * ``LonaView`` classes can define ``STATIC_FILES`` now + +* command line + + * Debug mode ``input-events`` was added + +* testing + + * ``lona.pytest.eventually`` was added + + +Bugfixes +~~~~~~~~ + +* static files + + * All static files are properly sorted now + + .. changelog-header:: 1.7.2 (2021-09-28) diff --git a/lona/__init__.py b/lona/__init__.py index be2ebbde..1209680c 100644 --- a/lona/__init__.py +++ b/lona/__init__.py @@ -10,5 +10,5 @@ pass -VERSION = (1, 7, 2) +VERSION = (1, 7, 3) VERSION_STRING = '.'.join(str(i) for i in VERSION)