diff --git a/.github/workflows/publish-develop-docs.yml b/.github/workflows/publish-develop-docs.yml index 65a1bbb..584be64 100644 --- a/.github/workflows/publish-develop-docs.yml +++ b/.github/workflows/publish-develop-docs.yml @@ -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 diff --git a/.github/workflows/publish-latest-docs.yml b/.github/workflows/publish-latest-docs.yml index 7ce0c00..3ff83a7 100644 --- a/.github/workflows/publish-latest-docs.yml +++ b/.github/workflows/publish-latest-docs.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index a59b1e1..e0be82e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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/) diff --git a/src/reactpy_router/__init__.py b/src/reactpy_router/__init__.py index 1e5ea46..ce138fd 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.0" +__version__ = "1.0.1" from reactpy_router.components import link, navigate, route