Skip to content

Commit

Permalink
Bump version: 1.28.0 → 1.29.0
Browse files Browse the repository at this point in the history
  • Loading branch information
iisakkirotko committed Mar 11, 2024
1 parent a250ae2 commit f8a9f4a
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 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.28.0
current_version = 1.29.0
commit = True
tag = True
parse = (?P<major>\d+)(\.(?P<minor>\d+))(\.(?P<patch>\d+))((?P<release>.)(?P<build>\d+))?
Expand Down
2 changes: 1 addition & 1 deletion packages/assets/solara_assets/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"CDN assets for Solara"
__version__ = "1.28.0"
__version__ = "1.29.0"
2 changes: 1 addition & 1 deletion packages/solara-enterprise/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
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,2 +1,2 @@
"Enterprise features for Solara"
__version__ = "1.28.0"
__version__ = "1.29.0"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ dev = [
"polars",
]
assets = [
"solara-assets==1.28.0"
"solara-assets==1.29.0"
]
flask = [
"flask",
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.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
```


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
```
2 changes: 1 addition & 1 deletion solara/__init__.py
Original file line number Diff line number Diff line change
@@ -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"

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.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")
Expand Down

0 comments on commit f8a9f4a

Please sign in to comment.