Skip to content

Commit

Permalink
1.0.2 (Add bundle.js to wheel) (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
Archmonger authored Oct 24, 2024
1 parent 7ffa76f commit 23c0a77
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
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

0 comments on commit 23c0a77

Please sign in to comment.