Skip to content

Commit 3748f38

Browse files
authored
release 0.36.3 (#679)
1 parent dcd30c2 commit 3748f38

File tree

8 files changed

+29
-12
lines changed

8 files changed

+29
-12
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.36.2
1+
0.36.3

docs/source/developing-idom/changelog.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ 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.3
11+
------
12+
13+
Misc bug fixes along with a minor improvement that allows components to return ``None``
14+
to render nothing.
15+
16+
**Closed Issues**
17+
18+
- All child states wiped upon any child key change - :issue:`652`
19+
- Allow NoneType returns within components - :issue:`538`
20+
21+
**Merged Pull Requests**
22+
23+
- fix #652 - :pull:`672`
24+
- Fix 663 - :pull:`667`
25+
26+
1027
0.36.2
1128
------
1229

scripts/changes_since_release.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@
1212

1313
SECTION_FORMAT_TEMPLATES = {
1414
"md": lambda title: f"# {title}",
15-
"rst": lambda title: f"**{title}**",
15+
"rst": lambda title: f"**{title}**\n",
1616
"text": lambda title: f"{title}\n{'-' * len(title)}",
1717
}
1818

1919

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

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

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

2626
__all__ = [
2727
"component",

0 commit comments

Comments
 (0)