Skip to content

Commit

Permalink
Bump version: 1.32.0 → 1.32.1
Browse files Browse the repository at this point in the history
  • Loading branch information
iisakkirotko committed May 1, 2024
1 parent 958ebf2 commit c0a7607
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.32.0
current_version = 1.32.1
commit = True
tag = True
parse = (?P<major>\d+)(\.(?P<minor>\d+))(\.(?P<patch>\d+))((?P<release>.)(?P<build>\d+))?
Expand Down
6 changes: 3 additions & 3 deletions packages/pytest-ipywidgets/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ authors = [{name = "Maarten A. Breddels", email = "maartenbreddels@gmail.com"}]
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
dynamic = ["description"]
version = "1.32.0"
version = "1.32.1"
dependencies = [
"solara-ui==1.32.0",
"solara-server[starlette]==1.32.0",
"solara-ui==1.32.1",
"solara-server[starlette]==1.32.1",
"pytest",
"playwright; python_version > '3.6'",
"pytest-playwright; python_version > '3.6'",
Expand Down
2 changes: 1 addition & 1 deletion packages/solara-assets/solara_assets/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"CDN assets for Solara"

__version__ = "1.32.0"
__version__ = "1.32.1"
4 changes: 2 additions & 2 deletions packages/solara-enterprise/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ license = {file = "LICENSE"}
classifiers = ["License :: Free for non-commercial use"]
dynamic = ["version", "description"]
dependencies = [
"solara-ui==1.32.0",
"solara-server==1.32.0",
"solara-ui==1.32.1",
"solara-server==1.32.1",
]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion packages/solara-enterprise/solara_enterprise/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"Enterprise features for Solara"

__version__ = "1.32.0"
__version__ = "1.32.1"
10 changes: 5 additions & 5 deletions packages/solara-meta/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ authors = [{name = "Maarten A. Breddels", email = "maartenbreddels@gmail.com"}]
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
dynamic = ["description"]
version = "1.32.0"
version = "1.32.1"
packages = [
{ include = "solara" }
]
dependencies = [
"solara-ui[all]==1.32.0",
"solara-server[starlette,dev]==1.32.0"
"solara-ui[all]==1.32.1",
"solara-server[starlette,dev]==1.32.1"
]

[project.urls]
Expand All @@ -32,7 +32,7 @@ all = [
]

assets = [
"solara-assets==1.32.0"
"solara-assets==1.32.1"
]

documentation = [
Expand All @@ -52,7 +52,7 @@ documentation = [

# for backwards compatibility to support solara[pytest]
pytest = [
"pytest-ipywidgets[all]==1.32.0"
"pytest-ipywidgets[all]==1.32.1"
]

# for backwards compatibility to support solara[dev]
Expand Down
2 changes: 1 addition & 1 deletion packages/solara-server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ readme = "README.md"
authors = [{name = "Maarten A. Breddels", email = "maartenbreddels@gmail.com"}]
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: MIT License"]
version = "1.32.0"
version = "1.32.1"
dynamic = ["description"]
dependencies = [
"solara-ui",
Expand Down
6 changes: 3 additions & 3 deletions release.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,20 @@
## Making an alpha release


$ ./release.sh patch --new-version 1.32.0a1
$ ./release.sh patch --new-version 1.32.1a1


# semi automated
To make a new release
```
# update solara/__init__.py
$ git add -u && git commit -m 'Release v1.32.0' && git tag v1.32.0 && git push upstream master v1.32.0
$ git add -u && git commit -m 'Release v1.32.1' && git tag v1.32.1 && git push upstream master v1.32.1
```


If a problem happens, and you want to keep the history clean
```
# do fix
$ git rebase -i HEAD~3
$ git tag v1.32.0 -f && git push upstream master v1.32.0 -f
$ git tag v1.32.1 -f && git push upstream master v1.32.1 -f
```
2 changes: 1 addition & 1 deletion solara/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Build webapps using IPywidgets"""

__version__ = "1.32.0"
__version__ = "1.32.1"
github_url = "https://github.com/widgetti/solara"
git_branch = "master"

Expand Down
2 changes: 1 addition & 1 deletion solara/server/static/solara_bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ async def main():
]
for dep in requirements:
await micropip.install(dep, keep_going=True)
await micropip.install("/wheels/solara-1.32.0-py2.py3-none-any.whl", keep_going=True)
await micropip.install("/wheels/solara-1.32.1-py2.py3-none-any.whl", keep_going=True)
import solara

el = solara.Warning("lala")
Expand Down

0 comments on commit c0a7607

Please sign in to comment.