diff --git a/CHANGELOG.md b/CHANGELOG.md index cefcd89..a58a1ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelogs +## v1.2.4 + +
+ Click here to show more. + +In this version, we have made the following changes: + +1. 🐛 **FIX!**: We fixed a bug where the app will crash when using the `-bw` option. + + +
+ ## v1.2.3
diff --git a/src/stone/image.py b/src/stone/image.py index 716b5b8..220cccf 100644 --- a/src/stone/image.py +++ b/src/stone/image.py @@ -77,7 +77,7 @@ def normalize_color(color): raise ArgumentError(f"Invalid color code: {color}") -@functools.lru_cache(maxsize=128) # Python 3.2+ +# @functools.lru_cache(maxsize=128) # Python 3.2+ def normalize_palette(palette): return [normalize_color(color) for color in palette] diff --git a/src/stone/package.py b/src/stone/package.py index 2df6915..ac1c41a 100644 --- a/src/stone/package.py +++ b/src/stone/package.py @@ -1,4 +1,4 @@ -__version__ = "1.2.3" +__version__ = "1.2.4" __package_name__ = "skin-tone-classifier" __app_name__ = "Skin Tone Classifier" __description__ = "An easy-to-use library for skin tone classification"