diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f9a42112..3405ba22 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,6 +1,6 @@ { - "libs/pyTermTk": "0.42.0-a.0", - "apps/ttkode": "0.3.1-a.2", + "libs/pyTermTk": "0.42.1-a.0", + "apps/ttkode": "0.3.2-a.2", "apps/ttkDesigner": "0.41.4-a.54", "apps/dumbPaintTool": "0.41.9-a.54" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 223660b7..bae9c377 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.42.1-a.0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/pyTermTk-v0.42.0-a.0...pyTermTk-v0.42.1-a.0) (2025-05-01) + + +### Fixes + +* **driver:** allow different signal masks between darwin and Linux ([7fc8725](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/7fc8725ced906fb120bc086ffac10cb607859039)) + ## [0.42.0-a.0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/pyTermTk-v0.41.18-a.0...pyTermTk-v0.42.0-a.0) (2025-04-29) diff --git a/apps/ttkode/CHANGELOG.md b/apps/ttkode/CHANGELOG.md index 07e903c2..64211be9 100644 --- a/apps/ttkode/CHANGELOG.md +++ b/apps/ttkode/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.3.2-a.2](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/ttkode-v0.3.1-a.2...ttkode-v0.3.2-a.2) (2025-05-01) + + +### Chores + +* **typing:** removed 'Self' to keep python 3.9 compatibility ([0225d4c](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/0225d4c19ffee21c243fc0c8bfdfe7e7954ffce2)) +* **typing:** removed "Self" reference to allow flake test to pass ([54ec928](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/54ec928496fa2e2ff98f13941ed111d520dc8017)) + ## [0.3.1-a.2](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/ttkode-v0.3.0-a.2...ttkode-v0.3.1-a.2) (2025-04-29) diff --git a/apps/ttkode/pyproject.toml b/apps/ttkode/pyproject.toml index e6b89266..06e7a251 100644 --- a/apps/ttkode/pyproject.toml +++ b/apps/ttkode/pyproject.toml @@ -24,7 +24,7 @@ classifiers = [ "Topic :: Software Development :: User Interfaces", ] dependencies = [ - 'pyTermTk>=0.42.0-a.0', + 'pyTermTk>=0.42.1-a.0', 'appdirs', 'copykitten', 'pygments' diff --git a/apps/ttkode/ttkode/__init__.py b/apps/ttkode/ttkode/__init__.py index e85d7b50..a51e3bb5 100755 --- a/apps/ttkode/ttkode/__init__.py +++ b/apps/ttkode/ttkode/__init__.py @@ -22,7 +22,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -__version__:str = '0.3.1-a.2' +__version__:str = '0.3.2-a.2' from .plugin import TTkodePlugin, TTkodePluginActivity from .proxy import TTKodeViewerProxy, ttkodeProxy diff --git a/libs/pyTermTk/CHANGELOG.md b/libs/pyTermTk/CHANGELOG.md index 223660b7..bae9c377 100644 --- a/libs/pyTermTk/CHANGELOG.md +++ b/libs/pyTermTk/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.42.1-a.0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/pyTermTk-v0.42.0-a.0...pyTermTk-v0.42.1-a.0) (2025-05-01) + + +### Fixes + +* **driver:** allow different signal masks between darwin and Linux ([7fc8725](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/7fc8725ced906fb120bc086ffac10cb607859039)) + ## [0.42.0-a.0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/pyTermTk-v0.41.18-a.0...pyTermTk-v0.42.0-a.0) (2025-04-29) diff --git a/libs/pyTermTk/TermTk/__init__.py b/libs/pyTermTk/TermTk/__init__.py index fdffb45f..963e1358 100644 --- a/libs/pyTermTk/TermTk/__init__.py +++ b/libs/pyTermTk/TermTk/__init__.py @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -__version__:str = '0.42.0-a.0' +__version__:str = '0.42.1-a.0' from .TTkCore import * from .TTkTheme import *