From b777c4f3a4c7d54ce7300743717bbea74c45a5d2 Mon Sep 17 00:00:00 2001 From: Florian Scherf Date: Tue, 10 Aug 2021 16:44:47 +0200 Subject: [PATCH] release 1.0.1 Signed-off-by: Florian Scherf --- doc/content/end-user-documentation/changelog.rst | 11 +++++++++++ lona/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/doc/content/end-user-documentation/changelog.rst b/doc/content/end-user-documentation/changelog.rst index f2281551..9ee05ef4 100644 --- a/doc/content/end-user-documentation/changelog.rst +++ b/doc/content/end-user-documentation/changelog.rst @@ -1,8 +1,19 @@ +toctree: False Changelog ========= +`1.0.1 `_ +------------------------------------------------------------- + +Bugfixes +~~~~~~~~ + +* html: data binding: skip all non change events + * Previously ``TextInput`` and ``Select`` catched all input events and handled + them as ``CHANGE`` event. Now unknown events get bubbled up. + `1.0 `_ --------------------------------------------------------- diff --git a/lona/__init__.py b/lona/__init__.py index 493f8761..2894790a 100644 --- a/lona/__init__.py +++ b/lona/__init__.py @@ -1,2 +1,2 @@ -VERSION = (1, 0) +VERSION = (1, 0, 1) VERSION_STRING = '{}'.format('.'.join([str(i) for i in VERSION]))