Skip to content

Commit 27ff087

Browse files
Bump version: 0.19.0 → 0.19.1
1 parent d4d3ff5 commit 27ff087

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.19.0
2+
current_version = 0.19.1
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)(\.(?P<minor>\d+))(\.(?P<patch>\d+))((?P<release>.)(?P<build>\d+))?
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"CDN assets for Solara"
2-
__version__ = "0.19.0"
2+
__version__ = "0.19.1"

release.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@
77
## Making an alpha release
88

99

10-
$ ./release.sh patch --new-version 0.19.0a1
10+
$ ./release.sh patch --new-version 0.19.1a1
1111

1212

1313
# semi automated
1414
To make a new release
1515
```
1616
# update solara/__init__.py
17-
$ git add -u && git commit -m 'Release v0.19.0' && git tag v0.19.0 && git push upstream master v0.19.0
17+
$ git add -u && git commit -m 'Release v0.19.1' && git tag v0.19.1 && git push upstream master v0.19.1
1818
```
1919

2020

2121
If a problem happens, and you want to keep the history clean
2222
```
2323
# do fix
2424
$ git rebase -i HEAD~3
25-
$ git tag v0.19.0 -f && git push upstream master v0.19.0 -f
25+
$ git tag v0.19.1 -f && git push upstream master v0.19.1 -f
2626
```

solara/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Build webapps using IPywidgets"""
2-
__version__ = "0.19.0"
2+
__version__ = "0.19.1"
33
github_url = "https://github.com/widgetti/solara"
44
git_branch = "master"
55
# isort: skip_file

solara/server/static/solara_bootstrap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ async def main():
119119
]
120120
for dep in requirements:
121121
await micropip.install(dep, keep_going=True)
122-
await micropip.install("/wheels/solara-0.19.0-py2.py3-none-any.whl", keep_going=True)
122+
await micropip.install("/wheels/solara-0.19.1-py2.py3-none-any.whl", keep_going=True)
123123
import solara
124124

125125
el = solara.Warning("lala")

0 commit comments

Comments
 (0)