Skip to content

Commit

Permalink
0.34.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rmorshea committed Dec 17, 2021
1 parent 3d67e3b commit 6d49613
Show file tree
Hide file tree
Showing 8 changed files with 41 additions and 14 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.33.3
0.34.0
27 changes: 27 additions & 0 deletions docs/source/developing-idom/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,33 @@ Changelog
=========


0.34.0
------

This release contains a variety of minor fixes and improvements which came out of
rewriting the documentation. The most significant of these changes is the remove of
target element attributes from the top-level of event data dictionaries. For example,
instead of being able to find the value of an input at ``event["value"]`` it will
instead be found at ``event["target"]["value"]``. For a short period we will issue a
:class:`DeprecationWarning` when target attributes are requested at the top-level of the
event dictionary. As part of this change we also add ``event["currentTarget"]`` and
``event["relatedTarget"]`` keys to the event dictionary as well as a
``event[some_target]["boundingClientRect"]`` where ``some_target`` may be ``"target"``,
``"currentTarget"`` or ``"relatedTarget"``.

**Closed Issues**

- Move target attributes to ``event['target']`` - :issue:`548`

**Pull Requests**

- Correctly Handle Target Event Data - :pull:`550`
- Clean up WS console logging - :pull:`522`
- automatically infer closure arguments - :pull:`520`
- Documentation Rewrite - :pull:`519`
- add option to replace existing when creating a module - :pull:`516`


0.33.3
------

Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def tag(session: Session) -> None:
install_requirements_file(session, "make-release")
session.run("pysemver", "check", version)

changelog_file = ROOT / "docs" / "source" / "changelog.rst"
changelog_file = ROOT / "docs" / "source" / "developing-idom" / "changelog.rst"
for line in changelog_file.read_text().splitlines():
if line == version:
break
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.

6 changes: 3 additions & 3 deletions src/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
},
"scripts": {
"build": "snowpack build",
"check-format": "npm --workspaces run check-format",
"format": "npm --workspaces run format",
"publish": "npm --workspaces publish",
"test": "npm --workspaces test",
"check-format": "npm --workspaces run check-format"
"test": "npm --workspaces test"
},
"version": "0.33.3",
"version": "0.34.0",
"workspaces": [
"./packages/*"
]
Expand Down
4 changes: 2 additions & 2 deletions src/client/packages/idom-app-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
"url": "https://github.com/idom-team/idom"
},
"scripts": {
"format": "prettier --write ./src",
"check-format": "prettier --check ./src",
"format": "prettier --write ./src",
"test": "echo 'no tests'"
},
"version": "0.33.3"
"version": "0.34.0"
}
4 changes: 2 additions & 2 deletions src/client/packages/idom-client-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
"url": "https://github.com/idom-team/idom"
},
"scripts": {
"format": "prettier --write ./src ./tests",
"check-format": "prettier --check ./src ./tests",
"format": "prettier --write ./src ./tests",
"test": "uvu tests"
},
"type": "module",
"version": "0.33.3"
"version": "0.34.0"
}
2 changes: 1 addition & 1 deletion src/idom/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@


__author__ = "idom-team"
__version__ = "0.33.3" # DO NOT MODIFY
__version__ = "0.34.0" # DO NOT MODIFY

__all__ = [
"component",
Expand Down

0 comments on commit 6d49613

Please sign in to comment.