Skip to content

Commit

Permalink
Bump version to 4.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelzwiers committed Oct 25, 2024
1 parent 9811b99 commit 00e751a
Show file tree
Hide file tree
Showing 7 changed files with 13 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.4.0 # BIDScoin version (should correspond with the version in pyproject.toml)
version: 4.5.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.4.0 # BIDScoin version (should correspond with the version in pyproject.toml)
version: 4.5.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.4.0 # BIDScoin version (should correspond with the version in pyproject.toml)
version: 4.5.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
5 changes: 5 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@

## [dev]

## [4.5.0] - TBD

### Added
- A events2bids plugin for converting Presentation logfiles to events tsv-files

### Changed
- Drop saving data in the derivatives folder (i.e. this was not required by BIDS after all)

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.4.0'
version = '4.5.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 @@ -40,7 +40,7 @@ DCCN deployment

1. Copy the dev folder, update the bidsmaps and module::

VERSION="4.4.0"
VERSION="4.5.0"
cp -r /opt/bidscoin/dev /opt/bidscoin/$VERSION
cd /opt/_modules/bidscoin
ln -s .common $VERSION
Expand Down Expand Up @@ -84,7 +84,7 @@ Dockerhub

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

VERSION="4.4.0"
VERSION="4.5.0"
cd ~/PycharmProjects/bidscoin
sudo docker build -t marcelzwiers/bidscoin:$VERSION .
sudo docker run --rm marcelzwiers/bidscoin:$VERSION bidscoin -v
Expand All @@ -99,7 +99,7 @@ Neurodesk
1. Pull and edit the bidscoin neurocontainer in a separate release branch
2. Build and test a neurodocker image::

VERSION="4.4.0"
VERSION="4.5.0"
cd ~/PycharmProjects/neurocontainers/recipes/bidscoin
conda activate neurodocker
./build.sh -ds
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.4.0 # BIDScoin version (should correspond with the version in pyproject.toml)
version: 4.5.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 00e751a

Please sign in to comment.