Skip to content

Commit 7e1d68f

Browse files
committed
Release v0.1.2
1 parent 38d9411 commit 7e1d68f

File tree

2 files changed

+4
-13
lines changed

2 files changed

+4
-13
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "koreui"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "Dynamic GUI Generator from JSON Schema"
55
readme = "README.md"
66
requires-python = ">=3.10"

src/__init__.py

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,9 @@
1-
from .kore import (
2-
JsonSchemaForm,
3-
SchemaResolver,
4-
SchemaValidator,
5-
ValidationError
6-
)
7-
from .loader import load_schema, load_schema_with_defaults
1+
from .kore import JsonSchemaForm
2+
from .loader import load_schema
83

9-
__version__ = "0.1.1"
4+
__version__ = "0.1.2"
105

116
__all__ = [
127
"JsonSchemaForm",
13-
"SchemaResolver",
14-
"SchemaValidator",
15-
"ValidationError",
168
"load_schema",
17-
"load_schema_with_defaults"
189
]

0 commit comments

Comments
 (0)