Skip to content

Commit

Permalink
Bump version solara-vuetify-app: 6.0.0 → 6.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenbreddels committed Dec 15, 2023
1 parent 2944e87 commit 23c858c
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 @@ -6,7 +6,7 @@
from hatchling.builders.hooks.plugin.interface import BuildHookInterface

packages = [
["@widgetti/solara-vuetify-app", "6.0.0"],
["@widgetti/solara-vuetify-app", "6.1.0"],
["@widgetti/solara-vuetify3-app", "1.0.0"],
["requirejs", "2.3.6"],
["mermaid", "8.6.4"],
Expand Down
2 changes: 1 addition & 1 deletion packages/solara-vuetify-app/.bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 6.0.0
current_version = 6.1.0
commit = True
tag = True
tag_name = @widgetti/solara-vuetify-app@{new_version}
Expand Down
4 changes: 2 additions & 2 deletions packages/solara-vuetify-app/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@widgetti/solara-vuetify-app",
"version": "6.0.0",
"version": "6.1.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-vuetify-app@6.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-vuetify-app@6.1.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 @@ -17,7 +17,7 @@
{% if vue3 == True %}
<link href="{{cdn}}/@widgetti/solara-vuetify3-app@1.0.0/dist/main.css" rel="stylesheet"></link>
{% else %}
<link href="{{cdn}}/@widgetti/solara-vuetify-app@6.0.0/dist/main.css" rel="stylesheet"></link>
<link href="{{cdn}}/@widgetti/solara-vuetify-app@6.1.0/dist/main.css" rel="stylesheet"></link>
{% endif %}


Expand Down Expand Up @@ -221,11 +221,11 @@
<script src="{{cdn}}/@widgetti/solara-vuetify3-app@1.0.0/dist/solara-vuetify-app{{ipywidget_major_version}}.js"></script>
{% endif %}
{% else %}
<link href="{{cdn}}/@widgetti/solara-vuetify-app@6.0.0/dist/fonts.css" rel="stylesheet" fetchpriority="low"></link>
<link href="{{cdn}}/@widgetti/solara-vuetify-app@6.1.0/dist/fonts.css" rel="stylesheet" fetchpriority="low"></link>
{% if production %}
<script src="{{cdn}}/@widgetti/solara-vuetify-app@6.0.0/dist/solara-vuetify-app{{ipywidget_major_version}}.min.js"></script>
<script src="{{cdn}}/@widgetti/solara-vuetify-app@6.1.0/dist/solara-vuetify-app{{ipywidget_major_version}}.min.js"></script>
{% else %}
<script src="{{cdn}}/@widgetti/solara-vuetify-app@6.0.0/dist/solara-vuetify-app{{ipywidget_major_version}}.js"></script>
<script src="{{cdn}}/@widgetti/solara-vuetify-app@6.1.0/dist/solara-vuetify-app{{ipywidget_major_version}}.js"></script>
{% endif %}
{% endif %}
{% if production %}
Expand Down

0 comments on commit 23c858c

Please sign in to comment.