Skip to content
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
3 changes: 1 addition & 2 deletions .github/workflows/publish-develop-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: 3.x
- run: pip install -r requirements/build-docs.txt
- name: Install dependecies
- name: Install dependencies
run: |
pip install --upgrade hatch uv
- name: Configure Git
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/publish-latest-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: 3.x
- run: pip install -r requirements/build-docs.txt
- name: Install dependecies
- name: Install dependencies
run: |
pip install --upgrade hatch uv
- name: Configure Git
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ Using the following categories, list your changes in this order:

## [Unreleased]

- Nothing (yet)!

## [1.0.1] - 2024-10-24

### Changed

- JavaScript bundle is now created using [`Bun`](https://bun.sh/)
Expand Down
2 changes: 1 addition & 1 deletion src/reactpy_router/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# the version is statically loaded by setup.py
__version__ = "1.0.0"
__version__ = "1.0.1"


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