Skip to content

Commit

Permalink
0.36.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rmorshea committed Jan 31, 2022
1 parent 0ec06e1 commit 64b567d
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 9 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.35.4
0.36.0
24 changes: 24 additions & 0 deletions docs/source/developing-idom/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,30 @@ team are working on, or have feedback on how issues should be prioritized, feel
:discussion-type:`open up a discussion <question>`.


0.36.0
------

This release includes an important fix for errors produced after :pull:`623` was merged.
In addition there is not a new ``http.script`` element which can behave similarly to a
standard HTML ``<script>`` or, if no attributes are given, operate similarly to an
effect. If no attributes are given, and when the script evaluates to a function, that
function will be called the first time it is mounted and any time the content of the
script is subsequently changed. If the function then returns another function, that
returned function will be called when the script is removed from the view, or just
before the content of the script changes.

**Closed Issues**

- State mismatch during component update - :issue:`629`
- Implement a script tag - :issue:`544`

**Pull Requests**

- make scripts behave more like normal html script element - :pull:`632`
- Fix state mismatch during component update - :pull:`631`
- implement script element - :pull:`617`


0.35.4
------

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": "0.35.4",
"version": "0.36.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 @@ -21,5 +21,5 @@
"format": "prettier --write ./src",
"test": "echo 'no tests'"
},
"version": "0.35.4"
"version": "0.36.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": "0.35.4"
"version": "0.36.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.35.4" # DO NOT MODIFY
__version__ = "0.36.0" # DO NOT MODIFY

__all__ = [
"component",
Expand Down

0 comments on commit 64b567d

Please sign in to comment.