Skip to content

release 0.36.3 #679

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.36.2
0.36.3
17 changes: 17 additions & 0 deletions docs/source/developing-idom/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ team are working on, or have feedback on how issues should be prioritized, feel
:discussion-type:`open up a discussion <question>`.


0.36.3
------

Misc bug fixes along with a minor improvement that allows components to return ``None``
to render nothing.

**Closed Issues**

- All child states wiped upon any child key change - :issue:`652`
- Allow NoneType returns within components - :issue:`538`

**Merged Pull Requests**

- fix #652 - :pull:`672`
- Fix 663 - :pull:`667`


0.36.2
------

Expand Down
6 changes: 3 additions & 3 deletions scripts/changes_since_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@

SECTION_FORMAT_TEMPLATES = {
"md": lambda title: f"# {title}",
"rst": lambda title: f"**{title}**",
"rst": lambda title: f"**{title}**\n",
"text": lambda title: f"{title}\n{'-' * len(title)}",
}


ISSUE_FORMAT_TEMPLATES = {
"md": lambda title, number, **_: f"- {title} - [#{number}](https://github.com/{REPO_NAME}/issues/{number})",
"rst": lambda title, number, **_: f"- {title} - :pull:`{number}`",
"rst": lambda title, number, **_: f"- {title} - :issue:`{number}`",
"text": lambda title, number, **_: f"- {title} - #{number}",
}

PULL_REQUEST_FORMAT_TEMPLATES = {
"md": lambda title, number, **_: f"- {title} - [#{number}](https://github.com/{REPO_NAME}/pull/{number})",
"rst": lambda title, number, **_: f"- {title} - :issue:`{number}`",
"rst": lambda title, number, **_: f"- {title} - :pull:`{number}`",
"text": lambda title, number, **_: f"- {title} - #{number}",
}

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

__all__ = [
"component",
Expand Down