diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f6a3f24a5..d1311acdc 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.28.0 +current_version = 1.29.0 commit = True tag = True parse = (?P\d+)(\.(?P\d+))(\.(?P\d+))((?P.)(?P\d+))? diff --git a/packages/assets/solara_assets/__init__.py b/packages/assets/solara_assets/__init__.py index 254b4b6a1..2943982da 100644 --- a/packages/assets/solara_assets/__init__.py +++ b/packages/assets/solara_assets/__init__.py @@ -1,2 +1,2 @@ "CDN assets for Solara" -__version__ = "1.28.0" +__version__ = "1.29.0" diff --git a/packages/solara-enterprise/pyproject.toml b/packages/solara-enterprise/pyproject.toml index c7b7077d0..cca40296b 100644 --- a/packages/solara-enterprise/pyproject.toml +++ b/packages/solara-enterprise/pyproject.toml @@ -11,7 +11,7 @@ license = {file = "LICENSE"} classifiers = ["License :: Free for non-commercial use"] dynamic = ["version", "description"] dependencies = [ - "solara==1.28.0", + "solara==1.29.0", ] [project.optional-dependencies] diff --git a/packages/solara-enterprise/solara_enterprise/__init__.py b/packages/solara-enterprise/solara_enterprise/__init__.py index 32daab70a..4bcbf6823 100644 --- a/packages/solara-enterprise/solara_enterprise/__init__.py +++ b/packages/solara-enterprise/solara_enterprise/__init__.py @@ -1,2 +1,2 @@ "Enterprise features for Solara" -__version__ = "1.28.0" +__version__ = "1.29.0" diff --git a/pyproject.toml b/pyproject.toml index 106922968..43938c09f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -100,7 +100,7 @@ dev = [ "polars", ] assets = [ - "solara-assets==1.28.0" + "solara-assets==1.29.0" ] flask = [ "flask", diff --git a/release.md b/release.md index 2bfc7ec09..dcbee6772 100644 --- a/release.md +++ b/release.md @@ -7,14 +7,14 @@ ## Making an alpha release - $ ./release.sh patch --new-version 1.28.0a1 + $ ./release.sh patch --new-version 1.29.0a1 # semi automated To make a new release ``` # update solara/__init__.py -$ git add -u && git commit -m 'Release v1.28.0' && git tag v1.28.0 && git push upstream master v1.28.0 +$ git add -u && git commit -m 'Release v1.29.0' && git tag v1.29.0 && git push upstream master v1.29.0 ``` @@ -22,5 +22,5 @@ If a problem happens, and you want to keep the history clean ``` # do fix $ git rebase -i HEAD~3 -$ git tag v1.28.0 -f && git push upstream master v1.28.0 -f +$ git tag v1.29.0 -f && git push upstream master v1.29.0 -f ``` diff --git a/solara/__init__.py b/solara/__init__.py index 73984e642..4698f828a 100644 --- a/solara/__init__.py +++ b/solara/__init__.py @@ -1,5 +1,5 @@ """Build webapps using IPywidgets""" -__version__ = "1.28.0" +__version__ = "1.29.0" github_url = "https://github.com/widgetti/solara" git_branch = "master" diff --git a/solara/server/static/solara_bootstrap.py b/solara/server/static/solara_bootstrap.py index 0c2024a60..d96ef54cb 100644 --- a/solara/server/static/solara_bootstrap.py +++ b/solara/server/static/solara_bootstrap.py @@ -119,7 +119,7 @@ async def main(): ] for dep in requirements: await micropip.install(dep, keep_going=True) - await micropip.install("/wheels/solara-1.28.0-py2.py3-none-any.whl", keep_going=True) + await micropip.install("/wheels/solara-1.29.0-py2.py3-none-any.whl", keep_going=True) import solara el = solara.Warning("lala")