Browse Source

chore: release main (#456)

Co-authored-by: Eugenio Parodi - Action <ceccopierangioliegenio@googlemail.com>
pull/461/head pyTermTk-v0.47.0-a.0
Pier CeccoPierangioliEugenio 5 months ago committed by GitHub
parent
commit
2b89b81cbb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      .release-please-manifest.json
  2. 18
      CHANGELOG.md
  3. 15
      apps/ttkode/CHANGELOG.md
  4. 2
      apps/ttkode/pyproject.toml
  5. 2
      apps/ttkode/ttkode/__init__.py
  6. 18
      libs/pyTermTk/CHANGELOG.md
  7. 2
      libs/pyTermTk/TermTk/__init__.py

4
.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"

18
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)

15
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)

2
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'

2
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

18
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)

2
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 *

Loading…
Cancel
Save