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"