diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 4436e9d9e6..42f8d226e5 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -106,7 +106,7 @@ jobs: - name: Build dist run: poetry build - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: path: dist/*.tar.gz @@ -114,7 +114,7 @@ jobs: needs: [build_wheels, build_sdist] runs-on: ubuntu-latest steps: - - uses: actions/download-artifact@v2 + - uses: actions/download-artifact@v3 with: name: artifact path: dist diff --git a/docs/releases/0.20.1.md b/docs/releases/0.20.1.md new file mode 100644 index 0000000000..d16524c7d4 --- /dev/null +++ b/docs/releases/0.20.1.md @@ -0,0 +1,3 @@ +# 0.20.1 - 2023-11-09 + +Dummy release to make wheels available. No actual difference with v0.20.0. diff --git a/pyproject.toml b/pyproject.toml index 8d612c6e27..41d9b3e64e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "river" -version = "0.20.0" +version = "0.20.1" description = "Online machine learning in Python" readme = "README.md" homepage = "https://riverml.xyz/" diff --git a/river/__version__.py b/river/__version__.py index 353196af4f..6008fcce9d 100644 --- a/river/__version__.py +++ b/river/__version__.py @@ -1,3 +1,3 @@ from __future__ import annotations -__version__ = "0.20.0" +__version__ = "0.20.1"