From b262ddb39bbb54c11fd4a4e74ece18832f06424c Mon Sep 17 00:00:00 2001 From: Tom Schimansky Date: Sat, 1 Jan 2022 22:39:17 +0100 Subject: [PATCH] readme fix and new version (1.7) --- Readme.md | 1 + customtkinter/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Readme.md b/Readme.md index aa8f4c7..48a7d56 100644 --- a/Readme.md +++ b/Readme.md @@ -179,6 +179,7 @@ root_tk = customtkinter.CTk() root_tk.configure(bg_color="gray20") root_tk.configure(bg_color=(, )) ``` + ### CTkButton Examle Code: diff --git a/customtkinter/__init__.py b/customtkinter/__init__.py index fe92d2b..d39b93d 100644 --- a/customtkinter/__init__.py +++ b/customtkinter/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.6" +__version__ = "1.7" from .customtkinter_button import CTkButton from .customtkinter_slider import CTkSlider diff --git a/setup.py b/setup.py index 81f0f02..b3298da 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ def read(filename): setup(name="customtkinter", - version="1.6", + version="1.7", author="Tom Schimansky", license="Creative Commons Zero v1.0 Universal", url="https://github.com/TomSchimansky/CustomTkinter",