Skip to content

Commit 978f28c

Browse files
committed
Bump version: 0.5.0 → 0.5.1
Signed-off-by: M Q <mingmelvinq@nvidia.com>
1 parent 0e5613b commit 978f28c

File tree

9 files changed

+55
-12
lines changed

9 files changed

+55
-12
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.5.0
2+
current_version = 0.5.1
33
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>a|b|rc)(?P<build>\d+))?
44
serialize =
55
{major}.{minor}.{patch}{release}{build}

docs/source/getting_started/installing_app_sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
MONAI Deploy App SDK is available as a Python package through [Python Package Index (PyPI)](https://pypi.org/project/monai-deploy-app-sdk/).
44

5-
MONAI Deploy App SDK's core functionality is written in Python 3 (>= 3.7) for Linux.
5+
MONAI Deploy App SDK's core functionality is written in Python 3 (>= 3.8) for Linux.
66

77
```bash
88
pip install monai-deploy-app-sdk

docs/source/getting_started/tutorials/mednist_app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ This tutorial demos the process of packaging up a trained model using MONAI Depl
55
## Setup
66

77
```bash
8-
# Create a virtual environment with Python 3.7.
8+
# Create a virtual environment with Python 3.8.
99
# Skip if you are already in a virtual environment.
1010
# (JupyterLab dropped its support for Python 3.6 since 2021-12-23.
1111
# See https://github.com/jupyterlab/jupyterlab/pull/11740)
12-
conda create -n mednist python=3.7 pytorch jupyterlab cudatoolkit=11.1 -c pytorch -c conda-forge
12+
conda create -n mednist python=3.8 pytorch jupyterlab cudatoolkit=11.1 -c pytorch -c conda-forge
1313
conda activate mednist
1414

1515
# Launch JupyterLab if you want to work on Jupyter Notebook

docs/source/getting_started/tutorials/monai_bundle_app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ This tutorial shows how to create an organ segmentation application for a PyTorc
55
## Setup
66

77
```bash
8-
# Create a virtual environment with Python 3.7.
8+
# Create a virtual environment with Python 3.8.
99
# Skip if you are already in a virtual environment.
1010
# (JupyterLab dropped its support for Python 3.6 since 2021-12-23.
1111
# See https://github.com/jupyterlab/jupyterlab/pull/11740)
12-
conda create -n monai python=3.7 pytorch torchvision jupyterlab cudatoolkit=11.1 -c pytorch -c conda-forge
12+
conda create -n monai python=3.8 pytorch torchvision jupyterlab cudatoolkit=11.1 -c pytorch -c conda-forge
1313
conda activate monai
1414

1515
# Launch JupyterLab if you want to work on Jupyter Notebook

docs/source/getting_started/tutorials/segmentation_app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ This tutorial shows how to create an organ segmentation application for a PyTorc
55
## Setup
66

77
```bash
8-
# Create a virtual environment with Python 3.7.
8+
# Create a virtual environment with Python 3.8.
99
# Skip if you are already in a virtual environment.
1010
# (JupyterLab dropped its support for Python 3.6 since 2021-12-23.
1111
# See https://github.com/jupyterlab/jupyterlab/pull/11740)
12-
conda create -n monai python=3.7 pytorch torchvision jupyterlab cudatoolkit=11.1 -c pytorch -c conda-forge
12+
conda create -n monai python=3.8 pytorch torchvision jupyterlab cudatoolkit=11.1 -c pytorch -c conda-forge
1313
conda activate monai
1414

1515
# Launch JupyterLab if you want to work on Jupyter Notebook

docs/source/getting_started/tutorials/segmentation_clara-viz_app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ This tutorial shows how to create an organ segmentation application for a PyTorc
55
## Setup
66

77
```bash
8-
# Create a virtual environment with Python 3.7.
8+
# Create a virtual environment with Python 3.8.
99
# Skip if you are already in a virtual environment.
1010
# (JupyterLab dropped its support for Python 3.6 since 2021-12-23.
1111
# See https://github.com/jupyterlab/jupyterlab/pull/11740)
12-
conda create -n monai python=3.7 pytorch torchvision jupyterlab cudatoolkit=11.1 -c pytorch -c conda-forge
12+
conda create -n monai python=3.8 pytorch torchvision jupyterlab cudatoolkit=11.1 -c pytorch -c conda-forge
1313
conda activate monai
1414

1515
# Launch JupyterLab if you want to work on Jupyter Notebook

docs/source/getting_started/tutorials/simple_app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ This tutorial shows how to develop a simple image processing application can be
55
## Setup
66

77
```bash
8-
# Create a virtual environment with Python 3.7.
8+
# Create a virtual environment with Python 3.8.
99
# Skip if you are already in a virtual environment.
1010
# (JupyterLab dropped its support for Python 3.6 since 2021-12-23.
1111
# See https://github.com/jupyterlab/jupyterlab/pull/11740)
12-
conda create -n monai python=3.7 pytorch torchvision jupyterlab cudatoolkit=11.1 -c pytorch -c conda-forge
12+
conda create -n monai python=3.8 pytorch torchvision jupyterlab cudatoolkit=11.1 -c pytorch -c conda-forge
1313
conda activate monai
1414

1515
# Launch JupyterLab if you want to work on Jupyter Notebook

docs/source/release_notes/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
```{toctree}
1111
:maxdepth: 1
1212
13+
v0.5.1
1314
v0.5.0
1415
```
1516
## Version 0.4

docs/source/release_notes/v0.5.1.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Version 0.5.1 (July 12, 2023)
2+
3+
This is a patch release of [v0.5](https://docs.monai.io/projects/monai-deploy-app-sdk/en/stable/release_notes/v0.5.0.html#), to address compatibility
4+
issues with newer versions of dependent packages, as well as adding enhancements to built-in operators.
5+
6+
## What's new
7+
8+
- Starting with this release, support [typeguard](https://typeguard.readthedocs.io/en/latest/) v3.0.0 and above
9+
- typeguard v3.0.0 introduced breaking changes in its API, causing failure in the App SDK v0.5 since it was implemented using earlier versions
10+
- work-around with pinning the typeguard version to v2 must be removed in the applications' dependency requirements
11+
- Python 3.8 and above are now required
12+
- Enhancement to support running Jupyter Notebooks with Python 3.10
13+
- New NIfTI data loader operator
14+
- Enhancements to inference operator, DICOM Seg Writer operator, CLI Packager, and more, see details below
15+
16+
## What's fixed/updated
17+
18+
- Update SDK to support typeguard v3.0 and above, [#438](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/438) by MMelQin
19+
- Fixes Project-MONAI/monai-deploy-app-sdk: running Jupyter notebooks with Python 3.10, [#436](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/436) by filipmu
20+
- Updated the MEDNIST tutorial notebooks by adding the dependencies of pydicom and highdicom, [#435](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/435) by MMelQin
21+
- Added option for SimpleInferer for the monai_seg_inference_operator, [#428](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/428) by vikashg
22+
- [Interim and obsoleted]Fix issue 410 where the latest typeguard version 3.x is incompatible, [#411](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/411) by MMelQin
23+
- Enable AMD GPU [via the base image passed to the Packager], [#406](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/406) by vickytsang
24+
- Expose option to omit empty frames, enhancement for the DICOM Seg Writer, [#401](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/401) by CPBridge
25+
- Add london_aicentre_aide README, [#398](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/398) by hshuaib90
26+
- Make the output DICOM SR instance part of the original study, enhancement, [#394](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/394) by MMelQin
27+
- Update README.md, [#391](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/391) by dbericat
28+
- Fix runtime error for MAP of breast density classification app, [#387](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/387) by MMelQin
29+
- ENH: Versions as strings, not numbers, so that 3.1 != 3.10, etc., [#385](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/385) by Leengit
30+
- A breast density monai application package, [#384](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/384) by vikashg
31+
- Enhance Packager to make the MAP more secure, easier to use, and based on new version of PyTorch image for newer CUDA versions, [#381](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/381) by MMelQin
32+
- Fix app requirements to working version, [#380](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/380) by aihsani
33+
- Enhanced code to extract and parse specific config files from TorchScript archive, [#378](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/378) by MMelQin
34+
- Merge Nuance Updates, [#377](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/377) by iain-henderson
35+
- Added a NIfTi data loader for issue #270, [#361](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/361) by vikashg
36+
37+
## Additional information
38+
Please visit [GETTING STARTED](/getting_started/index) guide and follow the tutorials.
39+
40+
You can learn more about SDK usage through [DEVELOPING WITH SDK](/developing_with_sdk/index).
41+
42+
Please let us know how you like it and what could be improved by [submitting an issue](https://github.com/Project-MONAI/monai-deploy-app-sdk/issues/new/choose) or [asking questions](https://github.com/Project-MONAI/monai-deploy-app-sdk/discussions)

0 commit comments

Comments
 (0)