From d5f1c50b86555ddebd8b497d42fb5765191acfbc Mon Sep 17 00:00:00 2001 From: Viicos <65306057+Viicos@users.noreply.github.com> Date: Wed, 3 Sep 2025 10:39:49 +0200 Subject: [PATCH] Prepare release v0.8.0 --- src/npm-fastui-bootstrap/package.json | 4 ++-- src/npm-fastui-prebuilt/package.json | 2 +- src/npm-fastui/package.json | 2 +- src/python-fastui/fastui/__init__.py | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/npm-fastui-bootstrap/package.json b/src/npm-fastui-bootstrap/package.json index c232b538..b26337f5 100644 --- a/src/npm-fastui-bootstrap/package.json +++ b/src/npm-fastui-bootstrap/package.json @@ -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", @@ -29,6 +29,6 @@ "sass": "^1.69.5" }, "peerDependencies": { - "@pydantic/fastui": "0.0.24" + "@pydantic/fastui": "0.0.25" } } diff --git a/src/npm-fastui-prebuilt/package.json b/src/npm-fastui-prebuilt/package.json index d343c1a8..7c788911 100644 --- a/src/npm-fastui-prebuilt/package.json +++ b/src/npm-fastui-prebuilt/package.json @@ -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", diff --git a/src/npm-fastui/package.json b/src/npm-fastui/package.json index b278341d..261e0b79 100644 --- a/src/npm-fastui/package.json +++ b/src/npm-fastui/package.json @@ -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", diff --git a/src/python-fastui/fastui/__init__.py b/src/python-fastui/fastui/__init__.py index a04fcc85..292e0f54 100644 --- a/src/python-fastui/fastui/__init__.py +++ b/src/python-fastui/fastui/__init__.py @@ -4,7 +4,7 @@ from .components import AnyComponent -__version__ = '0.7.0' +__version__ = '0.8.0' __all__ = 'AnyComponent', 'FastUI', 'prebuilt_html' @@ -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'