From c81b210148f04a4cb02fe2375ac91a6744e36233 Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Sun, 1 Dec 2024 07:45:26 -0500 Subject: [PATCH] =?UTF-8?q?v0.2.2=20=E2=80=94=20Packaging=20updates?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Support Python 3.11, 3.12, and 3.13 - Migrated from setuptools to hatch - Drop support for Python 3.7 --- CHANGELOG.md | 4 ++-- LICENSE | 2 +- src/interleave/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 012f92c..0d23b4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -v0.3.0 (in development) ------------------------ +v0.2.2 (2024-12-01) +------------------- - Support Python 3.11, 3.12, and 3.13 - Migrated from setuptools to hatch - Drop support for Python 3.7 diff --git a/LICENSE b/LICENSE index 7f8b7df..5fb7f7a 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2022 John Thorvald Wodder II +Copyright (c) 2022-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/interleave/__init__.py b/src/interleave/__init__.py index bf8792a..d14dcd5 100644 --- a/src/interleave/__init__.py +++ b/src/interleave/__init__.py @@ -29,7 +29,7 @@ cast, ) -__version__ = "0.3.0.dev1" +__version__ = "0.2.2" __author__ = "John Thorvald Wodder II" __author_email__ = "interleave@varonathe.org" __license__ = "MIT"