From 87cce255bd8ecba8b05e7c529d7ffc346381d619 Mon Sep 17 00:00:00 2001 From: Florian Scherf Date: Fri, 10 Feb 2023 17:23:54 +0100 Subject: [PATCH] release 1.12.2 Signed-off-by: Florian Scherf --- doc/content/changelog.rst | 12 ++++++++++++ lona/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/doc/content/changelog.rst b/doc/content/changelog.rst index f4ed6402..2c072b93 100644 --- a/doc/content/changelog.rst +++ b/doc/content/changelog.rst @@ -6,6 +6,18 @@ is_template: False Changelog ========= +.. changelog-header:: 1.12.2 (2023-02-10) + +Bugfixes +~~~~~~~~ + + * Handling of ``View.is_daemon`` was fixed + + * The problem, described in 1.12.1, was not fixed entirely before. The + server still did not remove daemonized views, that were stopped, + correctly in all cases + + .. changelog-header:: 1.12.1 (2023-02-10) Bugfixes diff --git a/lona/__init__.py b/lona/__init__.py index 7356d279..fc649e4b 100644 --- a/lona/__init__.py +++ b/lona/__init__.py @@ -9,5 +9,5 @@ from .view import View from .app import App -VERSION = (1, 12, 1) +VERSION = (1, 12, 2) VERSION_STRING = '.'.join(str(i) for i in VERSION) diff --git a/pyproject.toml b/pyproject.toml index 43c543e3..dbf532e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] -version = "1.12.1" +version = "1.12.2" name = "lona" description = "Write responsive web apps in full python"