From 9146e02718e4403838011f6fdc82ea23b5147f19 Mon Sep 17 00:00:00 2001 From: Tom Schimansky Date: Mon, 23 May 2022 11:01:38 +0200 Subject: [PATCH 1/3] updated CHANGELOG.md --- CHANGELOG.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6af824f..592816d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [4.4.0] - 2022-06-14 +### Changed + - Changed custom dropdown menu to normal tkinter.Menu because of multiple platform specific bugs + +## [4.3.0] - 2022-06-1 +### Added + - Added CTkComboBox + - Small fixes for new dropdown menu + +## [4.2.0] - 2022-05-30 +### Added + - CTkOptionMenu with custom dropdown menu + - Support for clicking on labels of CTkCheckBox, CTkRadioButton, CTkSwitch + ## [4.1.0] - 2022-05-24 ### Added - Configure width and height for frame, button, label, progressbar, slider, entry From 22b4dfb2d33bf877c96c316afa2456f28bcd560a Mon Sep 17 00:00:00 2001 From: Tom Schimansky Date: Fri, 17 Jun 2022 21:13:30 +0200 Subject: [PATCH 2/3] Bump to 4.4.1 --- customtkinter/__init__.py | 2 +- pyproject.toml | 2 +- setup.cfg | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/customtkinter/__init__.py b/customtkinter/__init__.py index de749d3..7d49569 100644 --- a/customtkinter/__init__.py +++ b/customtkinter/__init__.py @@ -1,4 +1,4 @@ -__version__ = "4.4.0" +__version__ = "4.4.1" import os import sys diff --git a/pyproject.toml b/pyproject.toml index d8becea..1f23371 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" github_url = "https://github.com/TomSchimansky/CustomTkinter" [tool.tbump.version] -current = "4.4.0" +current = "4.4.1" # Example of a semver regexp. # Make sure this matches current_version before diff --git a/setup.cfg b/setup.cfg index ed583cd..6bd5876 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = customtkinter -version = 4.4.0 +version = 4.4.1 description = Create modern looking GUIs with Python long_description = CustomTkinter UI-Library\n\n[](https://github.com/TomSchimansky/CustomTkinter/blob/master/documentation_images/Windows_dark.png)\n\nMore Information: https://github.com/TomSchimansky/CustomTkinter long_description_content_type = text/markdown From 11c7363d288f2a1c0bfd807c602c2a1df4c1ca1d Mon Sep 17 00:00:00 2001 From: Tom Schimansky Date: Thu, 23 Jun 2022 22:28:29 +0200 Subject: [PATCH 3/3] updated CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 592816d..8726190 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [4.5.0] - 2022-06-23 +### Added + - CTkScrollbar (vertical, horizontal) + ## [4.4.0] - 2022-06-14 ### Changed - Changed custom dropdown menu to normal tkinter.Menu because of multiple platform specific bugs