From 2b89b81cbbf69fddf5187424fcc820d3de59c7d7 Mon Sep 17 00:00:00 2001 From: Pier CeccoPierangioliEugenio Date: Sun, 12 Oct 2025 11:56:04 +0100 Subject: [PATCH] chore: release main (#456) Co-authored-by: Eugenio Parodi - Action --- .release-please-manifest.json | 4 ++-- CHANGELOG.md | 18 ++++++++++++++++++ apps/ttkode/CHANGELOG.md | 15 +++++++++++++++ apps/ttkode/pyproject.toml | 2 +- apps/ttkode/ttkode/__init__.py | 2 +- libs/pyTermTk/CHANGELOG.md | 18 ++++++++++++++++++ libs/pyTermTk/TermTk/__init__.py | 2 +- 7 files changed, 56 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2d2faaf2..61c44e5f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,6 +1,6 @@ { - "libs/pyTermTk": "0.46.0-a.0", - "apps/ttkode": "0.5.0-a.2", + "libs/pyTermTk": "0.47.0-a.0", + "apps/ttkode": "0.5.1-a.2", "apps/tlogg": "0.7.1-a.0", "apps/ttkDesigner": "0.41.4-a.54", "apps/dumbPaintTool": "0.41.9-a.54" diff --git a/CHANGELOG.md b/CHANGELOG.md index cb375225..130b004b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [0.47.0-a.0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/pyTermTk-v0.46.0-a.0...pyTermTk-v0.47.0-a.0) (2025-10-12) + + +### Features + +* **TableModel:** support add/remove rows/columns ([#460](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/460)) ([8eb9770](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/8eb9770502ce87df59e469c69e062b4a5bde4724)) +* **TextEdit:** add clear method ([#458](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/458)) ([d75345b](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/d75345b997e449bf9ac397576afaf08443432448)) + + +### Chores + +* **tree:** update event triggered by expandAll and collapseAll ([e2c4ef5](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/e2c4ef5318f212853d7af8b51825a2d83fc40e5d)) + + +### Document Changes + +* **tree:** improved typings and docs ([#459](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/459)) ([c821413](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/c8214135d95e352323d2ae8caa665bfd233c47c2)) + ## [0.46.0-a.0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/pyTermTk-v0.45.0-a.0...pyTermTk-v0.46.0-a.0) (2025-09-01) diff --git a/apps/ttkode/CHANGELOG.md b/apps/ttkode/CHANGELOG.md index 32ed2f0a..6be5ab60 100644 --- a/apps/ttkode/CHANGELOG.md +++ b/apps/ttkode/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [0.5.1-a.2](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/ttkode-v0.5.0-a.2...ttkode-v0.5.1-a.2) (2025-10-12) + + +### Chores + +* fix activity bar selected color ([e29a56d](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/e29a56d30c5f494b46ae6e0374a19801b1748d57)) +* prototyping pytest plugin ([b1815bc](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/b1815bcdf52a854318c489236f1ec5c4f2e6cbd6)) +* update search widget after replace ([4054530](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/40545301c1422288d7375f7598ddefb883d7fadc)) + + +### Refactors + +* **plugin:** include panels in the plugin engine ([641fa8b](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/641fa8bf467d26c1139ad85fa91e7f7c63113b35)) +* **plugin:** reorked the plugin standard implementation ([70cfcc2](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/70cfcc28b3be33cef3fc36e0660e5ac55cbd7460)) + ## [0.5.0-a.2](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/ttkode-v0.4.0-a.2...ttkode-v0.5.0-a.2) (2025-09-01) diff --git a/apps/ttkode/pyproject.toml b/apps/ttkode/pyproject.toml index ec060d03..70d64777 100644 --- a/apps/ttkode/pyproject.toml +++ b/apps/ttkode/pyproject.toml @@ -24,7 +24,7 @@ classifiers = [ "Topic :: Software Development :: User Interfaces", ] dependencies = [ - 'pyTermTk>=0.46.0-a.0', + 'pyTermTk>=0.47.0-a.0', 'appdirs', 'copykitten', 'pygments' diff --git a/apps/ttkode/ttkode/__init__.py b/apps/ttkode/ttkode/__init__.py index 2ae1d398..d265bde6 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.5.0-a.2' +__version__:str = '0.5.1-a.2' from .plugin import TTkodePlugin, TTkodePluginWidget, TTkodePluginWidgetActivity, TTkodePluginWidgetPanel from .proxy import TTKodeViewerProxy, ttkodeProxy diff --git a/libs/pyTermTk/CHANGELOG.md b/libs/pyTermTk/CHANGELOG.md index cb375225..130b004b 100644 --- a/libs/pyTermTk/CHANGELOG.md +++ b/libs/pyTermTk/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [0.47.0-a.0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/pyTermTk-v0.46.0-a.0...pyTermTk-v0.47.0-a.0) (2025-10-12) + + +### Features + +* **TableModel:** support add/remove rows/columns ([#460](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/460)) ([8eb9770](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/8eb9770502ce87df59e469c69e062b4a5bde4724)) +* **TextEdit:** add clear method ([#458](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/458)) ([d75345b](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/d75345b997e449bf9ac397576afaf08443432448)) + + +### Chores + +* **tree:** update event triggered by expandAll and collapseAll ([e2c4ef5](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/e2c4ef5318f212853d7af8b51825a2d83fc40e5d)) + + +### Document Changes + +* **tree:** improved typings and docs ([#459](https://github.com/ceccopierangiolieugenio/pyTermTk/issues/459)) ([c821413](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/c8214135d95e352323d2ae8caa665bfd233c47c2)) + ## [0.46.0-a.0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/pyTermTk-v0.45.0-a.0...pyTermTk-v0.46.0-a.0) (2025-09-01) diff --git a/libs/pyTermTk/TermTk/__init__.py b/libs/pyTermTk/TermTk/__init__.py index 75732a28..2ca5db1b 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.46.0-a.0' +__version__:str = '0.47.0-a.0' from .TTkCore import * from .TTkTheme import *