From f563542bfb356576597693857a6da624efa9dd71 Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Wed, 11 Oct 2023 21:16:34 -0400 Subject: [PATCH 1/2] CI: Fix get_version -> hatch version call --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index cf9e9299873..44cbf974e02 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -287,7 +287,7 @@ jobs: - run: name: Validate version command: | - THISVERSION=$( python3 get_version.py ) + THISVERSION=$( pipx run hatch version ) python -m pip install dist/*.tar.gz mkdir empty cd empty From 0b2b12b94a88374ddf7ce2635b979a89c8b9130f Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Thu, 12 Oct 2023 11:35:09 -0400 Subject: [PATCH 2/2] DOC: 1.9.0 changelog --- CHANGES.rst | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 93a56d0239c..1f27b347e10 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,23 @@ +1.9.0 (October 12, 2023) +======================== +New feature release in the 1.9.x series. + +This release should be mostly compatible with 1.8.x. +The most significant addition is the :class:`niworkflows.data.Loader`, +which provides some wrapping around :mod:`importlib.resources` to make +accessing resources more convenient. + +* FIX: Build config and CI (#826) +* FIX: Compatibility with matplotlib 3.8.0 (#825) +* FIX: Save boldrefs as float32 (#821) +* FIX: Replace deprecated Matplotlib functionality (#820) +* FIX: Test names of paths when calling path.iterdir() (#818) +* ENH: Add PET support to niworkflows (#823) +* ENH: Add data loader class, install at root and data modules (#816) +* MNT: Pyupgrade suggestions (#817) +* MNT: update vendored docs files (#813) +* CI: Bump actions/checkout from 3 to 4 (#824) + 1.8.1 (June 29, 2023) ===================== Patch release in the 1.8.x series.