Skip to content

Commit

Permalink
2.1.4 pog
Browse files Browse the repository at this point in the history
  • Loading branch information
cbedetti committed Apr 4, 2019
1 parent c52c946 commit 4811363
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 23 deletions.
55 changes: 37 additions & 18 deletions VERSIONS.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,43 @@
## Versions
# 2.1.4

- Add a tutorial to the documentation
- Update BIDS version in dcm2bids_scaffold
- Bug fix when intendedFor was equal to 0
- Restructuring of the documentation and add version description

# 2.1.3

- dicom_dir can be a list or str

# 2.1.2

- Add documentation with mkdocs
- Bug fix in dcm2niix_version

# 2.1.1

- Bug fix

# 2.1.0

2.1.0
- Checking if a new version of dcm2bids or dcm2niix is available on github
- dcm2niix output is now log to file as debug
- Add dcm2bids version to sidecars
- intendedFor option can also be a list

2.0.0
- The anonymizer option no longer exists from the script dcm2bids. It is still possible to deface the anatomical nifti images using the "defaceTpl" key in the congifuration file.
- Acquisitions are now sorted using the sidecar data instead of only the sidecar filename. The default behaviour is to sort by `SeriesNumber` then by `AcquisitionTime` then by the `SidecarFilename`. You can change this behaviour setting the key "compKeys" inside the configuration file.
- Add an option to use `re` for more flexibility for matching criteria. Set the key "searchMethod" to "re" in the config file. fnmatch is still the default.
- Design fix in matching with list in the sidecar.
- Sidecar modification using "sidecarChanges" in the configuration file.
- intendedFor option for fieldmap in the configuration file
- log improvement
- major code refactoring
- add docstrings
- add tests with pytest


1.1.8
- Add dcm2bids as runscript inside Singularity
- Remove logger from dcm2bids_helper
# 2.0.0

- The anonymizer option no longer exists from the script dcm2bids. It is still possible to deface the anatomical nifti images using the "defaceTpl" key in the congifuration file.
- Acquisitions are now sorted using the sidecar data instead of only the sidecar filename. The default behaviour is to sort by `SeriesNumber` then by `AcquisitionTime` then by the `SidecarFilename`. You can change this behaviour setting the key "compKeys" inside the configuration file.
- Add an option to use `re` for more flexibility for matching criteria. Set the key "searchMethod" to "re" in the config file. fnmatch is still the default.
- Design fix in matching with list in the sidecar.
- Sidecar modification using "sidecarChanges" in the configuration file.
- intendedFor option for fieldmap in the configuration file
- log improvement
- major code refactoring
- add docstrings
- add tests with pytest

# 1.1.8
- Add dcm2bids as runscript inside Singularity
- Remove logger from dcm2bids_helper
4 changes: 0 additions & 4 deletions dcm2bids/tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,3 @@ def test_internet():

def test_is_tool():
assert is_tool("dcm2bids")


def test_latest():
assert check_github_latest("cbedetti/Dcm2Bids") == __version__
2 changes: 1 addition & 1 deletion dcm2bids/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


#dcm2bids version
__version__ = "2.1.3"
__version__ = "2.1.4"


import logging
Expand Down

0 comments on commit 4811363

Please sign in to comment.