diff --git a/README.md b/README.md index 850bd14..2227cc6 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,7 @@ https://github.com/Zingzy/hPyT/assets/90309290/f86df1c7-b75b-4477-974a-eb34cc117 - [Stylize text](#stylize-text) - [Workaround for other libraries](#workaround-for-other-libraries) - [📜 hPyT Changelog](#-hpyt-changelog) + - [v1.3.6](#v136) - [v1.3.5](#v135) - [v1.3.4](#v134) - [v1.3.3](#v133) @@ -74,7 +75,7 @@ https://github.com/Zingzy/hPyT/assets/90309290/f86df1c7-b75b-4477-974a-eb34cc117 ## 📦 Installing ```powershell -pip install hPyT==1.3.5 +pip install hPyT==1.3.6 ``` ## 📥 Importing @@ -367,6 +368,10 @@ rainbow_border.start(hwnd) ## 📜 hPyT Changelog +### v1.3.6 + +- Minor Bug Fixes + ### v1.3.5 - Add feature for automatically changing the accent color of the titlebar and border diff --git a/hPyT/__init__.py b/hPyT/__init__.py index b82fae7..9bb71fb 100644 --- a/hPyT/__init__.py +++ b/hPyT/__init__.py @@ -1,7 +1,7 @@ """ hPyT - Hack Python Titlebar Author - zingzy -version - 1.3.5 +version - 1.3.6 License - MIT Homepage - https://github.com/zingzy/hPyT """ @@ -44,4 +44,4 @@ "get_accent_color", ] -__version__ = "1.3.5" +__version__ = "1.3.6" diff --git a/setup.py b/setup.py index 737e209..345f1d5 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="hPyT", - version="1.3.5", + version="1.3.6", description="Hack Python Titlebar - A package to manipulate windows and titlebar of GUI applications made using python.", long_description=long_description, long_description_content_type="text/markdown",