Browse Source

chore: release main (#396)

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

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

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

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

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

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.3.1-a.2'
__version__:str = '0.3.2-a.2'
from .plugin import TTkodePlugin, TTkodePluginActivity
from .proxy import TTKodeViewerProxy, ttkodeProxy

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

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.42.0-a.0'
__version__:str = '0.42.1-a.0'
from .TTkCore import *
from .TTkTheme import *

Loading…
Cancel
Save