Skip to content

Commit

Permalink
Release v0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jmsmkn committed Aug 6, 2021
1 parent c67b9fb commit 4b54341
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# History

## 0.3.2 (2021-08-06)

* Added `recurse_subdirectories` option to `convert`

## 0.3.1 (2021-07-26)

* Added support for e2e files
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ Under the hood we use:
## Usage

`panimg` takes a folder and tries to convert the containing files to MHA or TIFF.
By default, it will try to convert files from subdirectories as well. To only convert files in the top level directory, set `recurse_subdirectories` to `False`.
By default, it will try to convert files from subdirectories as well.
To only convert files in the top level directory, set `recurse_subdirectories` to `False`.
It will try several strategies for loading the contained files, and if an image is found it will output it to the output folder.
It will return a structure containing information about what images were produced, what images were used to form the new images, image metadata, and any errors from any of the strategies.

Expand Down
2 changes: 1 addition & 1 deletion panimg/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.3.1"
__version__ = "0.3.2"

import logging

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ commands =

[tool.poetry]
name = "panimg"
version = "0.3.1"
version = "0.3.2"
description = "Conversion of medical images to MHA and TIFF."
license = "Apache-2.0"
authors = ["James Meakin <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion tests/test_panimg.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == "0.3.1"
assert __version__ == "0.3.2"

0 comments on commit 4b54341

Please sign in to comment.