Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/npm-fastui-bootstrap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pydantic/fastui-bootstrap",
"version": "0.0.24",
"version": "0.0.25",
"description": "Bootstrap renderer for FastUI",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -29,6 +29,6 @@
"sass": "^1.69.5"
},
"peerDependencies": {
"@pydantic/fastui": "0.0.24"
"@pydantic/fastui": "0.0.25"
}
}
2 changes: 1 addition & 1 deletion src/npm-fastui-prebuilt/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pydantic/fastui-prebuilt",
"version": "0.0.24",
"version": "0.0.25",
"description": "Pre-built files for FastUI",
"main": "dist/index.html",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/npm-fastui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pydantic/fastui",
"version": "0.0.24",
"version": "0.0.25",
"description": "Build better UIs faster.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions src/python-fastui/fastui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from .components import AnyComponent

__version__ = '0.7.0'
__version__ = '0.8.0'
__all__ = 'AnyComponent', 'FastUI', 'prebuilt_html'


Expand All @@ -23,7 +23,7 @@ def coerce_to_list(cls, v):
return [v]


_PREBUILT_VERSION = '0.0.24'
_PREBUILT_VERSION = '0.0.25'
_PREBUILT_CDN_URL = f'https://cdn.jsdelivr.net/npm/@pydantic/fastui-prebuilt@{_PREBUILT_VERSION}/dist/assets'


Expand Down
Loading