Skip to content

Commit 38d9411

Browse files
committed
Release v0.1.1
1 parent 6c72744 commit 38d9411

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import sys
22
from PySide6.QtWidgets import QApplication, QScrollArea, QVBoxLayout, QWidget
33

4-
from src.koreui import JsonSchemaForm
4+
from src.kore import JsonSchemaForm
55
from src.loader import load_schema
66

77

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.0"
3+
version = "0.1.1"
44
description = "Dynamic GUI Generator from JSON Schema"
55
readme = "README.md"
66
requires-python = ">=3.10"

src/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
from .koreui import (
1+
from .kore import (
22
JsonSchemaForm,
33
SchemaResolver,
44
SchemaValidator,
55
ValidationError
66
)
77
from .loader import load_schema, load_schema_with_defaults
88

9-
__version__ = "0.1.0"
9+
__version__ = "0.1.1"
1010

1111
__all__ = [
1212
"JsonSchemaForm",
File renamed without changes.

0 commit comments

Comments
 (0)