From 06804f9a1bcd47028e079eebc0c2175d02be10dd Mon Sep 17 00:00:00 2001 From: Archmonger <16909269+Archmonger@users.noreply.github.com> Date: Thu, 24 Oct 2024 13:39:03 -0700 Subject: [PATCH 1/4] 1.0.2 (Add bundle.js to wheel) --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 5ffcba2..956b2a2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"] } From af5549bd0e63bcc926d8313bd74ef780cb1b1d2d Mon Sep 17 00:00:00 2001 From: Archmonger <16909269+Archmonger@users.noreply.github.com> Date: Thu, 24 Oct 2024 13:41:46 -0700 Subject: [PATCH 2/4] Add changelog --- CHANGELOG.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c0a2658..83b15c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 From b6b71178716db9c102cc6a07d53ae3089cd89b9b Mon Sep 17 00:00:00 2001 From: Archmonger <16909269+Archmonger@users.noreply.github.com> Date: Thu, 24 Oct 2024 13:43:28 -0700 Subject: [PATCH 3/4] Bump version --- CHANGELOG.md | 3 ++- src/reactpy_router/__init__.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 83b15c9..26a01ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -104,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 diff --git a/src/reactpy_router/__init__.py b/src/reactpy_router/__init__.py index ce138fd..66d68b1 100644 --- a/src/reactpy_router/__init__.py +++ b/src/reactpy_router/__init__.py @@ -1,5 +1,5 @@ # the version is statically loaded by setup.py -__version__ = "1.0.1" +__version__ = "1.0.2" from reactpy_router.components import link, navigate, route From 2e4eb29ff27d2ce075b576a8137f2f0665c7ae8c Mon Sep 17 00:00:00 2001 From: Archmonger <16909269+Archmonger@users.noreply.github.com> Date: Thu, 24 Oct 2024 13:55:50 -0700 Subject: [PATCH 4/4] Remove unneeded comment --- src/reactpy_router/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/reactpy_router/__init__.py b/src/reactpy_router/__init__.py index 66d68b1..41a7851 100644 --- a/src/reactpy_router/__init__.py +++ b/src/reactpy_router/__init__.py @@ -1,4 +1,3 @@ -# the version is statically loaded by setup.py __version__ = "1.0.2"