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"