From 28926e72309f5f423181fbf9b2a33555e6397bfb Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Sun, 1 Dec 2024 07:28:52 -0500 Subject: [PATCH] =?UTF-8?q?v0.5.1=20=E2=80=94=20Packaging=20updates?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Migrated from setuptools to hatch - Drop support for Python 3.7 - Support Python 3.13 --- CHANGELOG.md | 4 ++-- LICENSE | 2 +- src/click_loglevel/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 472faea..3f86e2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -v0.6.0 (in development) ------------------------ +v0.5.1 (2024-12-01) +------------------- - Migrated from setuptools to hatch - Drop support for Python 3.7 - Support Python 3.13 diff --git a/LICENSE b/LICENSE index 80b7bc1..e59de7e 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2021-2023 John Thorvald Wodder II +Copyright (c) 2021-2024 John Thorvald Wodder II Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/click_loglevel/__init__.py b/src/click_loglevel/__init__.py index 9e8a557..b8430d5 100644 --- a/src/click_loglevel/__init__.py +++ b/src/click_loglevel/__init__.py @@ -22,7 +22,7 @@ import click from click.shell_completion import CompletionItem -__version__ = "0.6.0.dev1" +__version__ = "0.5.1" __author__ = "John Thorvald Wodder II" __author_email__ = "click-loglevel@varonathe.org" __license__ = "MIT"