From d2435fcf33e922ec5e09d56579727ce54eda260f Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Tue, 13 May 2025 14:36:57 +0100 Subject: [PATCH 1/2] Update changelog and version number in preparation for 5.4.1 release --- CHANGES.txt | 20 ++++++++++++++++++++ setup.py | 4 ++-- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index af624bff..199fbc73 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,26 @@ Apptools CHANGELOG ================== +Version 5.3.1 +~~~~~~~~~~~~~ + +Released: 2025-05-13 + +This is a bugfix release that only affects packaging and build infrastructure. +The core functionality is unchanged. + +Build +----- +* For Python >= 3.10, allow NumPy 2.x to be used. (#361) +* Run HDF5-related tests on all platforms for Python >= 3.10. (#362) +* Bump setup-edm-action from v3 to v4. (#359) +* Remove the issue template. (#355) + +Documentation +------------- +* Copyrights have been updated for 2025. (#360) + + Version 5.3.0 ~~~~~~~~~~~~~ diff --git a/setup.py b/setup.py index 629d54ed..740c8038 100644 --- a/setup.py +++ b/setup.py @@ -20,9 +20,9 @@ # into the package source. MAJOR = 5 MINOR = 4 -MICRO = 0 +MICRO = 1 PRERELEASE = "" -IS_RELEASED = False +IS_RELEASED = True # If this file is part of a Git export (for example created with "git archive", # or downloaded from GitHub), ARCHIVE_COMMIT_HASH gives the full hash of the From c79ba47537c519694369eb9dbf14972286712eec Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Tue, 13 May 2025 14:43:35 +0100 Subject: [PATCH 2/2] Fix version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 740c8038..3250d24d 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ # together with information from the version control system, and then injected # into the package source. MAJOR = 5 -MINOR = 4 +MINOR = 3 MICRO = 1 PRERELEASE = "" IS_RELEASED = True