Skip to content

Commit 6d07881

Browse files
authored
Merge pull request #20 from definite-d/dev
Dev
2 parents 3ca740a + e8109e5 commit 6d07881

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ improvements to the structure and API of the project.
2525
- The entire project has been rewritten from scratch for better maintainability, extensibility, and performance.
2626
- The `animated_reskin` function is no more... because the `reskin` function itself has animation parameters baked in now.
2727
- The API for `reskin` has been improved to require only 2 parameters; the window, and the desired theme.
28-
- The project's minimum supported Python version is now 3.8.
28+
- ~~The project's minimum supported Python version is now 3.8.~~ Python 3.7 support is back from 4.0.1
2929
- Mentions of `HSV` interpolation in the code have been corrected; it's `HSL`.
3030

3131
Reskinner is a powerful library for PySimpleGUI and FreeSimpleGUI, enabling dynamic theme switching at runtime without window recreation. It provides a seamless way to update your application's look and feel on the fly.

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "reskinner"
33
requires-python = ">=3.7"
44
description = "Instantaneous theme changing for PySimpleGUI and FreeSimpleGUI windows."
5-
version = "4.0.0"
5+
version = "4.0.1"
66
authors = [{ name = "Divine U. Afam-Ifediogor" }]
77
license = { file = "LICENSE" }
88
readme = "./res/DESCRIPTION.md"
@@ -83,9 +83,9 @@ dev = [
8383
]
8484

8585
[tool.bumpver]
86-
current_version = "4.0.0"
86+
current_version = "4.0.1"
8787
version_pattern = "MAJOR.MINOR.PATCH"
88-
commit_message = "bump version {old_version} -> {new_version}"
88+
commit_message = "bump version v{old_version} -> v{new_version}"
8989
tag_message = "{new_version}"
9090
tag_scope = "default"
9191
pre_commit_hook = ""
@@ -96,4 +96,3 @@ push = true
9696

9797
[tool.bumpver.file_patterns]
9898
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
99-
"README.md" = ["{version}", "{pep440_version}"]

0 commit comments

Comments
 (0)