Skip to content

Commit d5576d4

Browse files
committed
release 0.35.2
1 parent 8c02d19 commit d5576d4

File tree

7 files changed

+31
-9
lines changed

7 files changed

+31
-9
lines changed

VERSION

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

docs/source/developing-idom/changelog.rst

+22
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,28 @@ 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.2
11+
------
12+
13+
This release includes several bug fixes. The most significant of which is the ability to
14+
change the type of an element in the try (i.e. to and from being a component) without
15+
getting an error. Originally the errors were introduced because it was though changing
16+
element type would not be desireable. This was not the case though - swapping types
17+
turns out to be quite common and useful.
18+
19+
**Closed Issues**
20+
21+
- Allow Children with the Same Key to Vary in Type - :issue:`613`
22+
- Client Always Looks for Server at "/" - :issue:`611`
23+
- Web modules get double file extensions with v0.35.x - :issue:`605`
24+
25+
**Pull Requests**
26+
27+
- allow elements with the same key to change type - :pull:`614`
28+
- make connection to websocket relative path - :pull:`612`
29+
- fix double file extension - :pull:`606`
30+
31+
1032
0.35.1
1133
------
1234

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.1",
17+
"version": "0.35.2",
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.1"
24+
"version": "0.35.2"
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.1"
34+
"version": "0.35.2"
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.1" # DO NOT MODIFY
24+
__version__ = "0.35.2" # DO NOT MODIFY
2525

2626
__all__ = [
2727
"component",

0 commit comments

Comments
 (0)