Skip to content

Commit

Permalink
Bump version solara-vuetify3-app: 2.0.0 → 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenbreddels committed Feb 16, 2024
1 parent d9ab311 commit afa44e0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/assets/hatch_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

packages = [
["@widgetti/solara-vuetify-app", "8.0.0"],
["@widgetti/solara-vuetify3-app", "2.0.0"],
["@widgetti/solara-vuetify3-app", "3.0.0"],
["requirejs", "2.3.6"],
["mermaid", "8.6.4"],
["codemirror", "5.65.3"],
Expand Down
2 changes: 1 addition & 1 deletion packages/solara-vuetify3-app/.bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.0.0
current_version = 3.0.0
commit = True
tag = True
tag_name = @widgetti/solara-vuetify3-app@{new_version}
Expand Down
4 changes: 2 additions & 2 deletions packages/solara-vuetify3-app/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@widgetti/solara-vuetify3-app",
"version": "2.0.0",
"version": "3.0.0",
"description": "Solara Vuetify App",
"main": "dist/solara-vuetify-app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"watch": "webpack --watch --mode=development",
"devlink": "TARGET_DIR=`python -c \"import sys; print(sys.prefix)\"`/share/solara/cdn/@widgetti/solara-vuetify3-app@2.0.0/; mkdir -p $TARGET_DIR && rm -rf $TARGET_DIR/dist && ln -sf $PWD/dist $TARGET_DIR/dist"
"devlink": "TARGET_DIR=`python -c \"import sys; print(sys.prefix)\"`/share/solara/cdn/@widgetti/solara-vuetify3-app@3.0.0/; mkdir -p $TARGET_DIR && rm -rf $TARGET_DIR/dist && ln -sf $PWD/dist $TARGET_DIR/dist"
},
"author": "",
"license": "MIT",
Expand Down
8 changes: 4 additions & 4 deletions solara/server/templates/solara.html.j2
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
{{ pre_rendered_css | safe }}

{% if vue3 == True %}
<link href="{{cdn}}/@widgetti/solara-vuetify3-app@2.0.0/dist/main{{ipywidget_major_version}}.css" rel="stylesheet"></link>
<link href="{{cdn}}/@widgetti/solara-vuetify3-app@3.0.0/dist/main{{ipywidget_major_version}}.css" rel="stylesheet"></link>
{% else %}
<link href="{{cdn}}/@widgetti/solara-vuetify-app@8.0.0/dist/main{{ipywidget_major_version}}.css" rel="stylesheet"></link>
{% endif %}
Expand Down Expand Up @@ -209,11 +209,11 @@
</div>
{% block after_pre_rendered_html %}{% endblock %}
{% if vue3 == True %}
<link href="{{cdn}}/@widgetti/solara-vuetify3-app@2.0.0/dist/fonts.css" rel="stylesheet"></link>
<link href="{{cdn}}/@widgetti/solara-vuetify3-app@3.0.0/dist/fonts.css" rel="stylesheet"></link>
{% if production %}
<script src="{{cdn}}/@widgetti/solara-vuetify3-app@2.0.0/dist/solara-vuetify-app{{ipywidget_major_version}}.min.js"></script>
<script src="{{cdn}}/@widgetti/solara-vuetify3-app@3.0.0/dist/solara-vuetify-app{{ipywidget_major_version}}.min.js"></script>
{% else %}
<script src="{{cdn}}/@widgetti/solara-vuetify3-app@2.0.0/dist/solara-vuetify-app{{ipywidget_major_version}}.js"></script>
<script src="{{cdn}}/@widgetti/solara-vuetify3-app@3.0.0/dist/solara-vuetify-app{{ipywidget_major_version}}.js"></script>
{% endif %}
{% else %}
<link href="{{cdn}}/@widgetti/solara-vuetify-app@8.0.0/dist/fonts.css" rel="stylesheet" fetchpriority="low"></link>
Expand Down

0 comments on commit afa44e0

Please sign in to comment.