Skip to content
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

1.0.2 (Add bundle.js to wheel) #45

Merged
merged 4 commits into from
Oct 24, 2024
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
13 changes: 10 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,18 @@ Using the following categories, list your changes in this order:

- Nothing (yet)!

## [1.0.2] - 2024-10-24

### Fixed

- Fix python `wheel` missing `bundle.js` file.

## [1.0.1] - 2024-10-24

### Changed

- JavaScript bundle is now created using [`Bun`](https://bun.sh/)
- Python package is now built using [`Hatch`](https://hatch.pypa.io/)
- JavaScript bundle is now created using [`Bun`](https://bun.sh/).
- Python package is now built using [`Hatch`](https://hatch.pypa.io/).

## [1.0.0] - 2024-10-18

Expand Down Expand Up @@ -98,7 +104,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.1...HEAD
[Unreleased]: https://github.com/reactive-python/reactpy-router/compare/1.0.2...HEAD
[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
[0.1.1]: https://github.com/reactive-python/reactpy-router/compare/0.1.0...0.1.1
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ path = "src/reactpy_router/__init__.py"
include = ["/src"]
artifacts = ["/src/reactpy_router/static/bundle.js"]

[tool.hatch.build.targets.wheel]
artifacts = ["/src/reactpy_router/static/bundle.js"]

[tool.hatch.metadata]
license-files = { paths = ["LICENSE.md"] }

Expand Down
3 changes: 1 addition & 2 deletions src/reactpy_router/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# the version is statically loaded by setup.py
__version__ = "1.0.1"
__version__ = "1.0.2"


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