From ea80175dc7c44fad264d8fd6f4c37cd671006598 Mon Sep 17 00:00:00 2001 From: "matthias@arch" Date: Sat, 16 Dec 2023 00:24:27 +0100 Subject: [PATCH] bumb version --- README.md | 3 +++ imgsort/globals.py | 3 ++- pyproject.toml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 374833d..26448b9 100755 --- a/README.md +++ b/README.md @@ -42,6 +42,9 @@ python3 -m pip install . ## Changelog ### 1.2 +#### 1.2.1 +- Refactored configuration management +#### 1.2.0 - Support ueberzugpp - Added option to open file with `xdg-open` - Use pyproject.toml for installation diff --git a/imgsort/globals.py b/imgsort/globals.py index 1f374e9..94f29b4 100644 --- a/imgsort/globals.py +++ b/imgsort/globals.py @@ -1,4 +1,5 @@ -version = "1.2" +version = "1.2.1" +fullversion = f"{version}-legacy" settings_map = { "q": "quit", diff --git a/pyproject.toml b/pyproject.toml index 00e3131..4e3e359 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["setuptools"] [project] name = "imgsort" -version = "1.2.0" +version = "1.2.1" description = "A program that lets you easily sort images into different folders." requires-python = ">=3.10" readme = "README.md"