diff --git a/doc/content/changelog.rst b/doc/content/changelog.rst index 8cd74b67..94b8e926 100644 --- a/doc/content/changelog.rst +++ b/doc/content/changelog.rst @@ -6,6 +6,17 @@ is_template: False Changelog ========= + +.. changelog-header:: 1.16.2 (2024-03-25) + +Bugfixes +~~~~~~~~ + +* Client & Client2 + + * Multiple browser history bugs were fixed + + .. changelog-header:: 1.16.1 (2023-11-28) Changes diff --git a/lona/__init__.py b/lona/__init__.py index e0959921..039d1a54 100644 --- a/lona/__init__.py +++ b/lona/__init__.py @@ -12,5 +12,5 @@ from .view import View from .app import App -VERSION = (1, 16, 1) +VERSION = (1, 16, 2) VERSION_STRING = '.'.join(str(i) for i in VERSION) diff --git a/pyproject.toml b/pyproject.toml index fd450e6f..1f31754c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] -version = "1.16.1" +version = "1.16.2" name = "lona" description = "Write responsive web apps in full python"