Skip to content

Commit 23c0a77

Browse files
authored
1.0.2 (Add bundle.js to wheel) (#45)
1 parent 7ffa76f commit 23c0a77

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

CHANGELOG.md

+10-3
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,18 @@ Using the following categories, list your changes in this order:
3636

3737
- Nothing (yet)!
3838

39+
## [1.0.2] - 2024-10-24
40+
41+
### Fixed
42+
43+
- Fix python `wheel` missing `bundle.js` file.
44+
3945
## [1.0.1] - 2024-10-24
4046

4147
### Changed
4248

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

4652
## [1.0.0] - 2024-10-18
4753

@@ -98,7 +104,8 @@ Using the following categories, list your changes in this order:
98104
- Rename `configure` to `create_router`.
99105
- Rename from `idom-router` to `reactpy-router`.
100106

101-
[Unreleased]: https://github.com/reactive-python/reactpy-router/compare/1.0.1...HEAD
107+
[Unreleased]: https://github.com/reactive-python/reactpy-router/compare/1.0.2...HEAD
108+
[1.0.2]: https://github.com/reactive-python/reactpy-router/compare/1.0.1...1.0.2
102109
[1.0.1]: https://github.com/reactive-python/reactpy-router/compare/1.0.0...1.0.1
103110
[1.0.0]: https://github.com/reactive-python/reactpy-router/compare/0.1.1...1.0.0
104111
[0.1.1]: https://github.com/reactive-python/reactpy-router/compare/0.1.0...0.1.1

pyproject.toml

+3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ path = "src/reactpy_router/__init__.py"
3737
include = ["/src"]
3838
artifacts = ["/src/reactpy_router/static/bundle.js"]
3939

40+
[tool.hatch.build.targets.wheel]
41+
artifacts = ["/src/reactpy_router/static/bundle.js"]
42+
4043
[tool.hatch.metadata]
4144
license-files = { paths = ["LICENSE.md"] }
4245

src/reactpy_router/__init__.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# the version is statically loaded by setup.py
2-
__version__ = "1.0.1"
1+
__version__ = "1.0.2"
32

43

54
from reactpy_router.components import link, navigate, route

0 commit comments

Comments
 (0)