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