Skip to content

2.0.0 #53

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 15, 2025
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
1 change: 0 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ end_of_line = lf
indent_size = 4
max_line_length = 120


[*.md]
indent_size = 4

Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ Don't forget to remove deprecated code on each major release!

## [Unreleased]

- Nothing (yet)!

## [2.0.0] - 2025-06-14

### Added

- Support for custom routers.
Expand Down Expand Up @@ -114,7 +118,8 @@ Don't forget to remove deprecated code on each major release!
- Rename `configure` to `create_router`.
- Rename from `idom-router` to `reactpy-router`.

[Unreleased]: https://github.com/reactive-python/reactpy-router/compare/1.0.3...HEAD
[Unreleased]: https://github.com/reactive-python/reactpy-router/compare/2.0.0...HEAD
[2.0.0]: https://github.com/reactive-python/reactpy-router/compare/1.0.3...2.0.0
[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
Expand Down
2 changes: 1 addition & 1 deletion docs/src/about/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ By utilizing `hatch`, the following commands are available to manage the develop

The `hatch test` command is a wrapper for `pytest`. Hatch "intercepts" a handful of arguments, which can be previewed by typing `hatch test --help`.

Any additional arguments in the `test` command are directly passed on to pytest. See the [pytest documentation](https://docs.pytest.org/en/stable/reference/reference.html#command-line-flags) for what additional arguments are available.
Any additional arguments in the `test` command are provided directly to pytest. See the [pytest documentation](https://docs.pytest.org/en/stable/reference/reference.html#command-line-flags) for what additional arguments are available.

### Linting and Formatting

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ type_check = ["pyright src"]
detached = true

[tool.hatch.envs.javascript.scripts]
check = ["cd src/js && bun install", "cd src/js && bun run check"]
fix = ["cd src/js && bun install", "cd src/js && bun run format"]
check = ['bun install --cwd "src/js"', 'bun run --cwd "src/js" check']
fix = ['bun install --cwd "src/js"', ' bun run --cwd "src/js" format']

#########################
# >>> Generic Tools <<< #
Expand All @@ -150,7 +150,7 @@ lint.preview = true
[tool.coverage.run]
branch = true
parallel = true
source = ["src/", "tests/"]
source = ["src/"]

[tool.coverage.paths]
source = ["src/"]
Expand Down
2 changes: 1 addition & 1 deletion src/reactpy_router/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.0.3"
__version__ = "2.0.0"


from reactpy_router.components import link, navigate, route
Expand Down