Skip to content

Commit

Permalink
release 0.35.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rmorshea committed Jan 27, 2022
1 parent 8c02d19 commit d5576d4
Show file tree
Hide file tree
Showing 7 changed files with 31 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.1
0.35.2
22 changes: 22 additions & 0 deletions docs/source/developing-idom/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,28 @@ team are working on, or have feedback on how issues should be prioritized, feel
:discussion-type:`open up a discussion <question>`.


0.35.2
------

This release includes several bug fixes. The most significant of which is the ability to
change the type of an element in the try (i.e. to and from being a component) without
getting an error. Originally the errors were introduced because it was though changing
element type would not be desireable. This was not the case though - swapping types
turns out to be quite common and useful.

**Closed Issues**

- Allow Children with the Same Key to Vary in Type - :issue:`613`
- Client Always Looks for Server at "/" - :issue:`611`
- Web modules get double file extensions with v0.35.x - :issue:`605`

**Pull Requests**

- allow elements with the same key to change type - :pull:`614`
- make connection to websocket relative path - :pull:`612`
- fix double file extension - :pull:`606`


0.35.1
------

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.1",
"version": "0.35.2",
"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.1"
"version": "0.35.2"
}
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.1"
"version": "0.35.2"
}
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.1" # DO NOT MODIFY
__version__ = "0.35.2" # DO NOT MODIFY

__all__ = [
"component",
Expand Down

0 comments on commit d5576d4

Please sign in to comment.