From e14d0984f000e32d3e05ff2c5dcd8aa033b85d37 Mon Sep 17 00:00:00 2001 From: Archmonger <16909269+Archmonger@users.noreply.github.com> Date: Thu, 21 Nov 2024 16:06:35 -0800 Subject: [PATCH] v1.0.3 --- CHANGELOG.md | 11 +++++++++-- src/reactpy_router/__init__.py | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9cc516..66617e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,7 +34,13 @@ Using the following categories, list your changes in this order: ## [Unreleased] -- Fix double rendering issue on initial page load +- Nothing (yet)! + +## [1.0.3] - 2024-11-21 + +### Fixed + +- Fix behavior where the page would be rendered twice on initial load ## [1.0.2] - 2024-10-24 @@ -104,7 +110,8 @@ Using the following categories, list your changes in this order: - Rename `configure` to `create_router`. - Rename from `idom-router` to `reactpy-router`. -[Unreleased]: https://github.com/reactive-python/reactpy-router/compare/1.0.2...HEAD +[Unreleased]: https://github.com/reactive-python/reactpy-router/compare/1.0.3...HEAD +[1.0.3]: https://github.com/reactive-python/reactpy-router/compare/1.0.2...1.0.3 [1.0.2]: https://github.com/reactive-python/reactpy-router/compare/1.0.1...1.0.2 [1.0.1]: https://github.com/reactive-python/reactpy-router/compare/1.0.0...1.0.1 [1.0.0]: https://github.com/reactive-python/reactpy-router/compare/0.1.1...1.0.0 diff --git a/src/reactpy_router/__init__.py b/src/reactpy_router/__init__.py index 41a7851..7ed7d3b 100644 --- a/src/reactpy_router/__init__.py +++ b/src/reactpy_router/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.0.2" +__version__ = "1.0.3" from reactpy_router.components import link, navigate, route