From e1c6667bd55097788b5bcec2f79a29f4468f5021 Mon Sep 17 00:00:00 2001 From: Iisakki Rotko Date: Wed, 3 Apr 2024 17:11:19 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.30.0=20=E2=86=92=201.30.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- packages/assets/solara_assets/__init__.py | 2 +- packages/solara-enterprise/pyproject.toml | 2 +- packages/solara-enterprise/solara_enterprise/__init__.py | 2 +- pyproject.toml | 2 +- release.md | 6 +++--- solara/__init__.py | 2 +- solara/server/static/solara_bootstrap.py | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a629bd691..0d3618ead 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.30.0 +current_version = 1.30.1 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 71e40ee0a..2e917d131 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.30.0" +__version__ = "1.30.1" diff --git a/packages/solara-enterprise/pyproject.toml b/packages/solara-enterprise/pyproject.toml index d9ae5cf4a..db301dc20 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.30.0", + "solara==1.30.1", ] [project.optional-dependencies] diff --git a/packages/solara-enterprise/solara_enterprise/__init__.py b/packages/solara-enterprise/solara_enterprise/__init__.py index 385756b2b..a5466d41a 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.30.0" +__version__ = "1.30.1" diff --git a/pyproject.toml b/pyproject.toml index c140cfdc6..f2c1c8243 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -99,7 +99,7 @@ dev = [ "polars", ] assets = [ - "solara-assets==1.30.0" + "solara-assets==1.30.1" ] flask = [ "flask", diff --git a/release.md b/release.md index 607c6162c..4e32ecef5 100644 --- a/release.md +++ b/release.md @@ -7,14 +7,14 @@ ## Making an alpha release - $ ./release.sh patch --new-version 1.30.0a1 + $ ./release.sh patch --new-version 1.30.1a1 # semi automated To make a new release ``` # update solara/__init__.py -$ git add -u && git commit -m 'Release v1.30.0' && git tag v1.30.0 && git push upstream master v1.30.0 +$ git add -u && git commit -m 'Release v1.30.1' && git tag v1.30.1 && git push upstream master v1.30.1 ``` @@ -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.30.0 -f && git push upstream master v1.30.0 -f +$ git tag v1.30.1 -f && git push upstream master v1.30.1 -f ``` diff --git a/solara/__init__.py b/solara/__init__.py index 271dc81ea..a9bf3b539 100644 --- a/solara/__init__.py +++ b/solara/__init__.py @@ -1,5 +1,5 @@ """Build webapps using IPywidgets""" -__version__ = "1.30.0" +__version__ = "1.30.1" 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 75838f599..e0fcf57db 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.30.0-py2.py3-none-any.whl", keep_going=True) + await micropip.install("/wheels/solara-1.30.1-py2.py3-none-any.whl", keep_going=True) import solara el = solara.Warning("lala")