Skip to content

Commit

Permalink
Bump the version to 4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelzwiers committed Sep 25, 2024
1 parent 5dbaa77 commit 27be13d
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bidscoin/heuristics/bidsmap_bids2bids.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Options:
# General BIDScoin and plugin options
# --------------------------------------------------------------------------------
bidscoin:
version: 4.3.3 # BIDScoin version (should correspond with the version in pyproject.toml)
version: 4.4.0 # BIDScoin version (should correspond with the version in pyproject.toml)
subprefix: sub- # The subject prefix of the source data
sesprefix: ses- # The session prefix of the source data
bidsignore: [extra_data/, sub-*_ct.*] # List of entries that are added to the .bidsignore file (for more info, see BIDS specifications), e.g. [extra_data/, pet/, myfile.txt, yourfile.csv]
Expand Down
2 changes: 1 addition & 1 deletion bidscoin/heuristics/bidsmap_dccn.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Options:
# General BIDScoin and plugin options
# --------------------------------------------------------------------------------
bidscoin:
version: 4.3.3 # BIDScoin version (should correspond with the version in pyproject.toml)
version: 4.4.0 # BIDScoin version (should correspond with the version in pyproject.toml)
subprefix: sub- # The subject prefix of the source data
sesprefix: ses- # The session prefix of the source data
bidsignore: [extra_data/, sub-*_ct.*] # List of entries that are added to the .bidsignore file (for more info, see BIDS specifications), e.g. [extra_data/, pet/, myfile.txt, yourfile.csv]
Expand Down
2 changes: 1 addition & 1 deletion bidscoin/heuristics/bidsmap_sst.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Options:
# General BIDScoin and plugin options
# --------------------------------------------------------------------------------
bidscoin:
version: 4.3.3 # BIDScoin version (should correspond with the version in pyproject.toml)
version: 4.4.0 # BIDScoin version (should correspond with the version in pyproject.toml)
subprefix: sub- # The subject prefix of the source data
sesprefix: ses- # The session prefix of the source data
bidsignore: [extra_data/, sub-*_ct.*] # List of entries that are added to the .bidsignore file (for more info, see BIDS specifications), e.g. [extra_data/, pet/, myfile.txt, yourfile.csv]
Expand Down
8 changes: 8 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@

## [dev]

## [4.4.0] - 2024

### Added
- Support for BIDS v1.10.0 (including MRS)

### Changed
- BIDScoin's main API, which now includes new classes to separate the logic from the data and make the code cleaner, better organized and maintainable

## [4.3.3] - 2024-07-12

### Added
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = 'setuptools.build_meta'
[project]
name = 'bidscoin'
description = 'Converts and organises raw MRI data-sets according to the Brain Imaging Data Structure (BIDS)'
version = '4.3.3'
version = '4.4.0'
readme = 'README.rst'
requires-python = '>= 3.8'
license = {file = 'LICENSE.txt'}
Expand Down
6 changes: 3 additions & 3 deletions release_procedure.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This document describes how to prepare a new BIDScoin release from within the DC
6. Backport to PyQt5 in a v4.#.#+qt5 branch
7. Build & test the containers in a Linux VM::

VERSION="4.3.3"
VERSION="4.4.0"
rm -rf ~/.bidscoin/$VERSION
cd ~/PycharmProjects/bidscoin
sudo apptainer build bidscoin.sif apptainer.def
Expand All @@ -23,7 +23,7 @@ This document describes how to prepare a new BIDScoin release from within the DC

8. Run tox@DCCN::

VERSION="4.3.3"
VERSION="4.4.0"
cd ~/python/bidscoin
git pull
git checkout v${VERSION}+qt5
Expand Down Expand Up @@ -68,7 +68,7 @@ Dockerhub

1. In the VM, build, test and push a Docker image::

VERSION="4.3.3"
VERSION="4.4.0"
sudo docker build -t marcelzwiers/bidscoin:$VERSION .
sudo docker run --rm marcelzwiers/bidscoin:$VERSION bidscoin -v
sudo docker run --rm marcelzwiers/bidscoin:$VERSION pngappend
Expand Down
2 changes: 1 addition & 1 deletion tests/test_data/bidsmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Options:
# General options and plugins
# --------------------------------------------------------------------------------
bidscoin:
version: 4.3.3 # BIDScoin version (should correspond with the version in pyproject.toml)
version: 4.4.0 # BIDScoin version (should correspond with the version in pyproject.toml)
bidsignore: extra_data/ # Semicolon-separated list of entries that are added to the .bidsignore file (for more info, see BIDS specifications), e.g. extra_data/;pet/;myfile.txt;yourfile.csv
subprefix: sub- # The subject prefix of the source data
sesprefix: ses- # The session prefix of the source data
Expand Down

0 comments on commit 27be13d

Please sign in to comment.