From 03d2ae7a6b539632b07089312d520ce99b42770c Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Sun, 1 Dec 2024 07:42:40 -0500 Subject: [PATCH] =?UTF-8?q?v0.5.2=20=E2=80=94=20Packaging=20updates?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Moved to wheelodex organization - Migrated from setuptools to hatch - Drop support for Python 3.7 - Support Python 3.13 --- CHANGELOG.md | 4 ++-- LICENSE | 2 +- docs/changelog.rst | 4 ++-- docs/conf.py | 2 +- src/headerparser/__init__.py | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c58d3d4..a343430 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -v0.6.0 (in development) ------------------------ +v0.5.2 (2024-12-01) +------------------- - Moved to wheelodex organization - Migrated from setuptools to hatch - Drop support for Python 3.7 diff --git a/LICENSE b/LICENSE index 4f4b9be..ff71573 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2017-2023 John Thorvald Wodder II +Copyright (c) 2017-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/docs/changelog.rst b/docs/changelog.rst index 0fd9d3d..4a9871f 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -3,8 +3,8 @@ Changelog ========= -v0.6.0 (in development) ------------------------ +v0.5.2 (2024-12-01) +------------------- - Moved to wheelodex organization - Migrated from setuptools to hatch - Drop support for Python 3.7 diff --git a/docs/conf.py b/docs/conf.py index 0a9fa11..940da33 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -2,7 +2,7 @@ project = "headerparser" author = "John T. Wodder II" -copyright = "2017-2023 John T. Wodder II" # noqa: A001 +copyright = "2017-2024 John T. Wodder II" # noqa: A001 extensions = [ "sphinx.ext.autodoc", diff --git a/src/headerparser/__init__.py b/src/headerparser/__init__.py index 00a323f..d28e1cb 100644 --- a/src/headerparser/__init__.py +++ b/src/headerparser/__init__.py @@ -41,7 +41,7 @@ ) from .types import BOOL, lower, unfold -__version__ = "0.6.0.dev1" +__version__ = "0.5.2" __author__ = "John Thorvald Wodder II" __author_email__ = "headerparser@varonathe.org" __license__ = "MIT"