Skip to content

Commit

Permalink
0.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxHalford committed Nov 9, 2023
1 parent 358b959 commit ab7c53d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,15 +106,15 @@ jobs:
- name: Build dist
run: poetry build

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz

upload_pypi:
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
Expand Down
3 changes: 3 additions & 0 deletions docs/releases/0.20.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# 0.20.1 - 2023-11-09

Dummy release to make wheels available. No actual difference with v0.20.0.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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/"
Expand Down
2 changes: 1 addition & 1 deletion river/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from __future__ import annotations

__version__ = "0.20.0"
__version__ = "0.20.1"

0 comments on commit ab7c53d

Please sign in to comment.