Skip to content

Commit fe55a82

Browse files
committed
Bump version to 0.22.3 and update changelog with QCheckBox support for boolean callbacks
1 parent e3530c6 commit fe55a82

5 files changed

Lines changed: 8 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66

77
## [Unreleased]
88

9+
## [0.22.3] - 2026-03-26
10+
11+
- Added QCheckBox support for boolean Callback return values. The CallbackWidget always rendered a QLineEdit for boolean callbacks, making it impossible to set False (bool of any non-empty string is True).
12+
913
## [0.22.0] - 2026-03-14
1014

1115
- Upgrade API and messages for Jupyter client and server. The following changes have been implemented to handle the latest version of the protocol 5.5, that was shipped with jupyter-client 8.8.0:

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
* Create a pull request and merge the pull request
1717
* Push the tags to upstream
1818
```
19-
$ git push --tags push-tags
19+
$ git push upstream v#.#.#
2020
```

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "gui-executor"
33
description = "Execute Python code in an automatically generated GUI App."
4-
version = "0.22.2"
4+
version = "0.22.3"
55
requires-python = ">=3.10"
66
license = {text = "MIT"}
77
readme = {"file" = "README.md", "content-type" = "text/markdown"}

src/gui_executor/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
The one and only place for the version number.
33
"""
44

5-
VERSION = (0, 22, 2)
5+
VERSION = (0, 22, 3)
66

77
__version__ = ".".join(map(str, VERSION))

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)