Skip to content

Commit ad5b333

Browse files
committed
release 0.35.3
1 parent a4e4060 commit ad5b333

File tree

7 files changed

+21
-9
lines changed

7 files changed

+21
-9
lines changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.35.2
1+
0.35.3

docs/source/developing-idom/changelog.rst

+12
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ 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.35.3
11+
------
12+
13+
As part of :pull:`614`, elements which changed type were not deeply unmounted. This
14+
behavior is probably undesireable though since the state for children of the element
15+
in question would persist (probably unexpectedly).
16+
17+
**Pull Requests**
18+
19+
- Always deeply unmount - :pull:`620`
20+
21+
1022
0.35.2
1123
------
1224

src/client/package-lock.json

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/client/package.json

+1-1
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.2",
17+
"version": "0.35.3",
1818
"workspaces": [
1919
"./packages/*"
2020
]

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

+1-1
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.2"
24+
"version": "0.35.3"
2525
}

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
"test": "uvu tests"
3232
},
3333
"type": "module",
34-
"version": "0.35.2"
34+
"version": "0.35.3"
3535
}

src/idom/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222

2323
__author__ = "idom-team"
24-
__version__ = "0.35.2" # DO NOT MODIFY
24+
__version__ = "0.35.3" # DO NOT MODIFY
2525

2626
__all__ = [
2727
"component",

0 commit comments

Comments
 (0)