Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ Using the following categories, list your changes in this order:

## [Unreleased]

- Nothing (yet)!

## [1.0.0] - 2024-10-18

### Changed

- Rename `use_query` to `use_search_params`.
Expand Down Expand Up @@ -87,7 +91,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/0.1.1...HEAD
[Unreleased]: https://github.com/reactive-python/reactpy-router/compare/1.0.0...HEAD
[1.0.0]: https://github.com/reactive-python/reactpy-router/compare/0.1.1...1.0.0
[0.1.1]: https://github.com/reactive-python/reactpy-router/compare/0.1.0...0.1.1
[0.1.0]: https://github.com/reactive-python/reactpy-router/compare/0.0.1...0.1.0
[0.0.1]: https://github.com/reactive-python/reactpy-router/releases/tag/0.0.1
2 changes: 1 addition & 1 deletion src/reactpy_router/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# the version is statically loaded by setup.py
__version__ = "0.1.1"
__version__ = "1.0.0"


from .components import link, navigate, route
Expand Down