diff --git a/CHANGELOG.md b/CHANGELOG.md index e19483b..953582a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -v0.9.0 (in development) ------------------------ +v0.8.2 (2024-12-01) +------------------- - Drop support for Python 3.6 and 3.7 - Support Python 3.11, 3.12, and 3.13 - Migrated from setuptools to hatch diff --git a/LICENSE b/LICENSE index c5cf41d..6444742 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2016-2021 John Thorvald Wodder II +Copyright (c) 2016-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 6a60e4a..db83acb 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -3,8 +3,8 @@ Changelog ========= -v0.9.0 (in development) ------------------------ +v0.8.2 (2024-12-01) +------------------- - Drop support for Python 3.6 and 3.7 - Support Python 3.11, 3.12, and 3.13 - Migrated from setuptools to hatch diff --git a/docs/conf.py b/docs/conf.py index 6f781bd..cb85cdc 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -2,7 +2,7 @@ project = "javaproperties" author = "John T. Wodder II" -copyright = "2016-2021 John T. Wodder II" # noqa: A001 +copyright = "2016-2024 John T. Wodder II" # noqa: A001 extensions = [ "sphinx.ext.autodoc", diff --git a/src/javaproperties/__init__.py b/src/javaproperties/__init__.py index 240966b..32a3fd8 100644 --- a/src/javaproperties/__init__.py +++ b/src/javaproperties/__init__.py @@ -36,7 +36,7 @@ ) from .xmlprops import dump_xml, dumps_xml, load_xml, loads_xml -__version__ = "0.9.0.dev1" +__version__ = "0.8.2" __author__ = "John Thorvald Wodder II" __author_email__ = "javaproperties@varonathe.org" __license__ = "MIT"