From 4d5c039c4c643e49ae825a0cdd8c5b286ba55582 Mon Sep 17 00:00:00 2001 From: Florian Scherf Date: Sun, 12 Feb 2023 20:52:08 +0100 Subject: [PATCH] release 1.12.3 Signed-off-by: Florian Scherf --- doc/content/changelog.rst | 13 +++++++++++++ lona/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/doc/content/changelog.rst b/doc/content/changelog.rst index 2c072b93..b1c04fc0 100644 --- a/doc/content/changelog.rst +++ b/doc/content/changelog.rst @@ -6,6 +6,19 @@ is_template: False Changelog ========= +.. changelog-header:: 1.12.3 (2023-02-12) + +Bugfixes +~~~~~~~~ + +* JavaScript client crashes on iPhone 6 and iPad mini 2 were fixed + + * Previously, the client used JavaScript public field declarations in the + Lona namespace class. Public field declarations are not supported in + Safari versions lower 14.1 and iPhone 6 and iPad mini 2 are running + version 12. + + .. changelog-header:: 1.12.2 (2023-02-10) Bugfixes diff --git a/lona/__init__.py b/lona/__init__.py index fc649e4b..718f832e 100644 --- a/lona/__init__.py +++ b/lona/__init__.py @@ -9,5 +9,5 @@ from .view import View from .app import App -VERSION = (1, 12, 2) +VERSION = (1, 12, 3) VERSION_STRING = '.'.join(str(i) for i in VERSION) diff --git a/pyproject.toml b/pyproject.toml index dbf532e5..27ddaa82 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] -version = "1.12.2" +version = "1.12.3" name = "lona" description = "Write responsive web apps in full python"