Skip to content

Commit

Permalink
Prep for 0.6.0 release (#300)
Browse files Browse the repository at this point in the history
  • Loading branch information
sydney-runkle committed May 2, 2024
1 parent 6d5b689 commit 2775c64
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
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.22",
"version": "0.0.23",
"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.22"
"@pydantic/fastui": "0.0.23"
}
}
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.22",
"version": "0.0.23",
"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.22",
"version": "0.0.23",
"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.5.2'
__version__ = '0.6.0'
__all__ = 'AnyComponent', 'FastUI', 'prebuilt_html'


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


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


Expand Down

0 comments on commit 2775c64

Please sign in to comment.