From 35ecaba6d1c1e47ae91f951e935c5ab1bcba163d Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Sun, 1 Dec 2024 07:56:04 -0500 Subject: [PATCH] =?UTF-8?q?v0.4.1=20=E2=80=94=20Packaging=20updates?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Support Python 3.12 and 3.13 - Migrated from setuptools to hatch - Drop support for Python 3.7 --- CHANGELOG.md | 4 ++-- LICENSE | 2 +- README.rst | 2 +- pdfschedule.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0858f5..aa5e828 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -v0.5.0 (in development) ------------------------ +v0.4.1 (2024-12-01) +------------------- - Support Python 3.12 and 3.13 - Migrated from setuptools to hatch - Drop support for Python 3.7 diff --git a/LICENSE b/LICENSE index bebbcd7..3389519 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2014, 2017-2023 John Thorvald Wodder II and contributors +Copyright (c) 2014, 2017-2024 John Thorvald Wodder II and contributors 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/README.rst b/README.rst index 20745a1..89ed764 100644 --- a/README.rst +++ b/README.rst @@ -174,4 +174,4 @@ The following input file: produces (using the default options) an output file that looks like this: -.. image:: https://github.com/jwodder/schedule/raw/master/examples/example01.png +.. image:: https://github.com/jwodder/schedule/raw/v0.4.1/examples/example01.png diff --git a/pdfschedule.py b/pdfschedule.py index 536b94a..4d6634c 100644 --- a/pdfschedule.py +++ b/pdfschedule.py @@ -6,7 +6,7 @@ more information. """ -__version__ = "0.5.0.dev1" +__version__ = "0.4.1" __author__ = "John Thorvald Wodder II" __author_email__ = "pdfschedule@varonathe.org" __license__ = "MIT"