Skip to content

Commit 82ab02b

Browse files
committed
Bump version: 1.41.0 → 1.42.0
1 parent af2734f commit 82ab02b

File tree

10 files changed

+19
-19
lines changed

10 files changed

+19
-19
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 = 1.41.0
2+
current_version = 1.42.0
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)(\.(?P<minor>\d+))(\.(?P<patch>\d+))((?P<release>.)(?P<build>\d+))?

packages/pytest-ipywidgets/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ authors = [{name = "Maarten A. Breddels", email = "[email protected]"}]
1010
license = {file = "LICENSE"}
1111
classifiers = ["License :: OSI Approved :: MIT License"]
1212
dynamic = ["description"]
13-
version = "1.41.0"
13+
version = "1.42.0"
1414
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",
1717
"pytest",
1818
"playwright; python_version > '3.6'",
1919
"pytest-playwright; python_version > '3.6'",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"CDN assets for Solara"
22

3-
__version__ = "1.41.0"
3+
__version__ = "1.42.0"

packages/solara-enterprise/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ license = {file = "LICENSE"}
1111
classifiers = ["License :: Free for non-commercial use"]
1212
dynamic = ["version", "description"]
1313
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",
1616
]
1717

1818
[project.optional-dependencies]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"Enterprise features for Solara"
22

3-
__version__ = "1.41.0"
3+
__version__ = "1.42.0"

packages/solara-meta/pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ authors = [{name = "Maarten A. Breddels", email = "[email protected]"}]
1010
license = {file = "LICENSE"}
1111
classifiers = ["License :: OSI Approved :: MIT License"]
1212
dynamic = ["description"]
13-
version = "1.41.0"
13+
version = "1.42.0"
1414
packages = [
1515
{ include = "solara" }
1616
]
1717
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"
2020
]
2121

2222
[project.urls]
@@ -32,7 +32,7 @@ all = [
3232
]
3333

3434
assets = [
35-
"solara-assets==1.41.0"
35+
"solara-assets==1.42.0"
3636
]
3737

3838
documentation = [
@@ -54,7 +54,7 @@ documentation = [
5454

5555
# for backwards compatibility to support solara[pytest]
5656
pytest = [
57-
"pytest-ipywidgets[all]==1.41.0"
57+
"pytest-ipywidgets[all]==1.42.0"
5858
]
5959

6060
# for backwards compatibility to support solara[dev]

packages/solara-server/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ readme = "README.md"
99
authors = [{name = "Maarten A. Breddels", email = "[email protected]"}]
1010
license = {file = "LICENSE"}
1111
classifiers = ["License :: OSI Approved :: MIT License"]
12-
version = "1.41.0"
12+
version = "1.42.0"
1313
dynamic = ["description"]
1414
dependencies = [
1515
"solara-ui",

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 1.41.0a1
10+
$ ./release.sh patch --new-version 1.42.0a1
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 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
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 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
2626
```

solara/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Build webapps using IPywidgets"""
22

3-
__version__ = "1.41.0"
3+
__version__ = "1.42.0"
44
github_url = "https://github.com/widgetti/solara"
55
git_branch = "master"
66

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-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)
123123
import solara
124124

125125
el = solara.Warning("lala")

0 commit comments

Comments
 (0)