Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

version 1.0 #940

Merged
merged 2 commits into from
Feb 26, 2023
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
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0-a6
1.0.0
7 changes: 7 additions & 0 deletions docs/source/about/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ Unreleased
No changes.


v1.0.0
------
:octicon:`milestone` *released on 2023-02-25*

No changes.


v1.0.0-a6
---------
:octicon:`milestone` *released on 2023-02-23*
Expand Down
8 changes: 4 additions & 4 deletions src/client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"publish": "npm --workspaces publish",
"test": "npm --workspaces test"
},
"version": "1.0.0-a6",
"version": "1.0.0",
"workspaces": [
"./packages/*"
]
Expand Down
2 changes: 1 addition & 1 deletion src/client/packages/idom-app-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
"format": "prettier --write ./src",
"test": "echo 'no tests'"
},
"version": "1.0.0-a6"
"version": "1.0.0"
}
2 changes: 1 addition & 1 deletion src/client/packages/idom-client-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
"test": "uvu tests"
},
"type": "module",
"version": "1.0.0-a6"
"version": "1.0.0"
}
2 changes: 1 addition & 1 deletion src/idom/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@


__author__ = "idom-team"
__version__ = "1.0.0-a6" # DO NOT MODIFY
__version__ = "1.0.0" # DO NOT MODIFY

__all__ = [
"backend",
Expand Down
12 changes: 6 additions & 6 deletions tests/test_core/test_vdom.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,11 +201,11 @@ def test_valid_vdom(value):
),
(
{"tagName": "tag", "children": [None]},
r"data\.children\[{data_x}\] must be object or string",
r"data\.children\[0\] must be object or string",
),
(
{"tagName": "tag", "children": [{"tagName": None}]},
r"data\.children\[{data_x}\]\.tagName must be string",
r"data\.children\[0\]\.tagName must be string",
),
(
{"tagName": "tag", "attributes": None},
Expand All @@ -217,14 +217,14 @@ def test_valid_vdom(value):
),
(
{"tagName": "tag", "eventHandlers": {"on_event": None}},
r"data\.eventHandlers\.{data_key} must be object",
r"data\.eventHandlers\.on_event must be object",
),
(
{
"tagName": "tag",
"eventHandlers": {"on_event": {}},
},
r"data\.eventHandlers\.{data_key}\ must contain \['target'\] properties",
r"data\.eventHandlers\.on_event\ must contain \['target'\] properties",
),
(
{
Expand All @@ -236,7 +236,7 @@ def test_valid_vdom(value):
}
},
},
r"data\.eventHandlers\.{data_key}\.preventDefault must be boolean",
r"data\.eventHandlers\.on_event\.preventDefault must be boolean",
),
(
{
Expand All @@ -248,7 +248,7 @@ def test_valid_vdom(value):
}
},
},
r"data\.eventHandlers\.{data_key}\.stopPropagation must be boolean",
r"data\.eventHandlers\.on_event\.stopPropagation must be boolean",
),
(
{"tagName": "tag", "importSource": None},
Expand Down