diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 61c44e5f..8bdc44d7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,6 +1,6 @@ { - "libs/pyTermTk": "0.47.0-a.0", - "apps/ttkode": "0.5.1-a.2", + "libs/pyTermTk": "0.47.1-a.0", + "apps/ttkode": "0.5.2-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 130b004b..6c75e2ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [0.47.1-a.0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/pyTermTk-v0.47.0-a.0...pyTermTk-v0.47.1-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.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) @@ -190,7 +208,7 @@ ### Chores -* bump version ([9c2940a](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/9c2940a2703ba605e4d4ffbfe89e473d29043e75)) +* Bump version ([9c2940a](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/9c2940a2703ba605e4d4ffbfe89e473d29043e75)) * merge main ([5a82301](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/5a82301291fe06e9c4d2a13911982b427c8a232e)) ## [0.41.14-a.0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/pyTermTk-v0.41.13-a.0...pyTermTk-v0.41.14-a.0) (2025-04-02) diff --git a/apps/ttkode/CHANGELOG.md b/apps/ttkode/CHANGELOG.md index 6be5ab60..b690a545 100644 --- a/apps/ttkode/CHANGELOG.md +++ b/apps/ttkode/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.5.2-a.2](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/ttkode-v0.5.1-a.2...ttkode-v0.5.2-a.2) (2025-10-12) + + +### Chores + +* bump version ([a083b24](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/a083b2487167121c81f7dfe25288a6fef7b002fc)) +* bump version ([62d17c5](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/62d17c51e6b06fa849410706e554d78fa72b0ce5)) + ## [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) diff --git a/apps/ttkode/pyproject.toml b/apps/ttkode/pyproject.toml index 70d64777..82c12d03 100644 --- a/apps/ttkode/pyproject.toml +++ b/apps/ttkode/pyproject.toml @@ -24,7 +24,7 @@ classifiers = [ "Topic :: Software Development :: User Interfaces", ] dependencies = [ - 'pyTermTk>=0.47.0-a.0', + 'pyTermTk>=0.47.1-a.0', 'appdirs', 'copykitten', 'pygments' diff --git a/apps/ttkode/ttkode/__init__.py b/apps/ttkode/ttkode/__init__.py index a8bfc3d4..c4130a18 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.1-a.2' +__version__:str = '0.5.2-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 8ce996b5..bb2d2e6d 100644 --- a/libs/pyTermTk/CHANGELOG.md +++ b/libs/pyTermTk/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.47.1-a.0](https://github.com/ceccopierangiolieugenio/pyTermTk/compare/pyTermTk-v0.47.0-a.0...pyTermTk-v0.47.1-a.0) (2025-10-12) + + +### Chores + +* bump version ([a083b24](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/a083b2487167121c81f7dfe25288a6fef7b002fc)) +* bump version ([62d17c5](https://github.com/ceccopierangiolieugenio/pyTermTk/commit/62d17c51e6b06fa849410706e554d78fa72b0ce5)) + ## [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) diff --git a/libs/pyTermTk/TermTk/__init__.py b/libs/pyTermTk/TermTk/__init__.py index 37a677fa..e3b45f96 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.47.0-a.0' +__version__:str = '0.47.1-a.0' from .TTkCore import * from .TTkTheme import *