Skip to content

Commit 64b567d

Browse files
committed
0.36.0 release
1 parent 0ec06e1 commit 64b567d

File tree

7 files changed

+33
-9
lines changed

7 files changed

+33
-9
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.35.4
1+
0.36.0

docs/source/developing-idom/changelog.rst

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,30 @@ team are working on, or have feedback on how issues should be prioritized, feel
77
:discussion-type:`open up a discussion <question>`.
88

99

10+
0.36.0
11+
------
12+
13+
This release includes an important fix for errors produced after :pull:`623` was merged.
14+
In addition there is not a new ``http.script`` element which can behave similarly to a
15+
standard HTML ``<script>`` or, if no attributes are given, operate similarly to an
16+
effect. If no attributes are given, and when the script evaluates to a function, that
17+
function will be called the first time it is mounted and any time the content of the
18+
script is subsequently changed. If the function then returns another function, that
19+
returned function will be called when the script is removed from the view, or just
20+
before the content of the script changes.
21+
22+
**Closed Issues**
23+
24+
- State mismatch during component update - :issue:`629`
25+
- Implement a script tag - :issue:`544`
26+
27+
**Pull Requests**
28+
29+
- make scripts behave more like normal html script element - :pull:`632`
30+
- Fix state mismatch during component update - :pull:`631`
31+
- implement script element - :pull:`617`
32+
33+
1034
0.35.4
1135
------
1236

src/client/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"publish": "npm --workspaces publish",
1515
"test": "npm --workspaces test"
1616
},
17-
"version": "0.35.4",
17+
"version": "0.36.0",
1818
"workspaces": [
1919
"./packages/*"
2020
]

src/client/packages/idom-app-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@
2121
"format": "prettier --write ./src",
2222
"test": "echo 'no tests'"
2323
},
24-
"version": "0.35.4"
24+
"version": "0.36.0"
2525
}

src/client/packages/idom-client-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
"test": "uvu tests"
3232
},
3333
"type": "module",
34-
"version": "0.35.4"
34+
"version": "0.36.0"
3535
}

src/idom/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222

2323
__author__ = "idom-team"
24-
__version__ = "0.35.4" # DO NOT MODIFY
24+
__version__ = "0.36.0" # DO NOT MODIFY
2525

2626
__all__ = [
2727
"component",

0 commit comments

Comments
 (0)