File tree 10 files changed +19
-19
lines changed
solara-assets/solara_assets
10 files changed +19
-19
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 1.41 .0
2
+ current_version = 1.42 .0
3
3
commit = True
4
4
tag = True
5
5
parse = (?P<major>\d+)(\.(?P<minor>\d+))(\.(?P<patch>\d+))((?P<release>.)(?P<build>\d+))?
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ authors = [{name = "Maarten A. Breddels", email = "
[email protected] "}]
10
10
license = {file = " LICENSE" }
11
11
classifiers = [" License :: OSI Approved :: MIT License" ]
12
12
dynamic = [" description" ]
13
- version = " 1.41 .0"
13
+ version = " 1.42 .0"
14
14
dependencies = [
15
- " solara-ui==1.41 .0" ,
16
- " solara-server[starlette]==1.41 .0" ,
15
+ " solara-ui==1.42 .0" ,
16
+ " solara-server[starlette]==1.42 .0" ,
17
17
" pytest" ,
18
18
" playwright; python_version > '3.6'" ,
19
19
" pytest-playwright; python_version > '3.6'" ,
Original file line number Diff line number Diff line change 1
1
"CDN assets for Solara"
2
2
3
- __version__ = "1.41 .0"
3
+ __version__ = "1.42 .0"
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ license = {file = "LICENSE"}
11
11
classifiers = [" License :: Free for non-commercial use" ]
12
12
dynamic = [" version" , " description" ]
13
13
dependencies = [
14
- " solara-ui==1.41 .0" ,
15
- " solara-server==1.41 .0" ,
14
+ " solara-ui==1.42 .0" ,
15
+ " solara-server==1.42 .0" ,
16
16
]
17
17
18
18
[project .optional-dependencies ]
Original file line number Diff line number Diff line change 1
1
"Enterprise features for Solara"
2
2
3
- __version__ = "1.41 .0"
3
+ __version__ = "1.42 .0"
Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ authors = [{name = "Maarten A. Breddels", email = "
[email protected] "}]
10
10
license = {file = " LICENSE" }
11
11
classifiers = [" License :: OSI Approved :: MIT License" ]
12
12
dynamic = [" description" ]
13
- version = " 1.41 .0"
13
+ version = " 1.42 .0"
14
14
packages = [
15
15
{ include = " solara" }
16
16
]
17
17
dependencies = [
18
- " solara-ui[all]==1.41 .0" ,
19
- " solara-server[starlette,dev]==1.41 .0"
18
+ " solara-ui[all]==1.42 .0" ,
19
+ " solara-server[starlette,dev]==1.42 .0"
20
20
]
21
21
22
22
[project .urls ]
@@ -32,7 +32,7 @@ all = [
32
32
]
33
33
34
34
assets = [
35
- " solara-assets==1.41 .0"
35
+ " solara-assets==1.42 .0"
36
36
]
37
37
38
38
documentation = [
@@ -54,7 +54,7 @@ documentation = [
54
54
55
55
# for backwards compatibility to support solara[pytest]
56
56
pytest = [
57
- " pytest-ipywidgets[all]==1.41 .0"
57
+ " pytest-ipywidgets[all]==1.42 .0"
58
58
]
59
59
60
60
# for backwards compatibility to support solara[dev]
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ readme = "README.md"
9
9
authors = [{
name =
" Maarten A. Breddels" ,
email =
" [email protected] " }]
10
10
license = {file = " LICENSE" }
11
11
classifiers = [" License :: OSI Approved :: MIT License" ]
12
- version = " 1.41 .0"
12
+ version = " 1.42 .0"
13
13
dynamic = [" description" ]
14
14
dependencies = [
15
15
" solara-ui" ,
Original file line number Diff line number Diff line change 7
7
## Making an alpha release
8
8
9
9
10
- $ ./release.sh patch --new-version 1.41 .0a1
10
+ $ ./release.sh patch --new-version 1.42 .0a1
11
11
12
12
13
13
# semi automated
14
14
To make a new release
15
15
```
16
16
# update solara/__init__.py
17
- $ git add -u && git commit -m 'Release v1.41 .0' && git tag v1.41 .0 && git push upstream master v1.41 .0
17
+ $ git add -u && git commit -m 'Release v1.42 .0' && git tag v1.42 .0 && git push upstream master v1.42 .0
18
18
```
19
19
20
20
21
21
If a problem happens, and you want to keep the history clean
22
22
```
23
23
# do fix
24
24
$ git rebase -i HEAD~3
25
- $ git tag v1.41 .0 -f && git push upstream master v1.41 .0 -f
25
+ $ git tag v1.42 .0 -f && git push upstream master v1.42 .0 -f
26
26
```
Original file line number Diff line number Diff line change 1
1
"""Build webapps using IPywidgets"""
2
2
3
- __version__ = "1.41 .0"
3
+ __version__ = "1.42 .0"
4
4
github_url = "https://github.com/widgetti/solara"
5
5
git_branch = "master"
6
6
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ async def main():
119
119
]
120
120
for dep in requirements :
121
121
await micropip .install (dep , keep_going = True )
122
- await micropip .install ("/wheels/solara-1.41 .0-py2.py3-none-any.whl" , keep_going = True )
122
+ await micropip .install ("/wheels/solara-1.42 .0-py2.py3-none-any.whl" , keep_going = True )
123
123
import solara
124
124
125
125
el = solara .Warning ("lala" )
You can’t perform that action at this time.
0 commit comments