diff --git a/CHANGELOG.md b/CHANGELOG.md index a9a1b25..e5e917f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ + + +# 0.1.18 — 2023-01-03 + +## Features + +- Add Multi-scale-convolutional-attention (MSCA) module (SegNexT). +- Add TokenMixer & MetaFormer modules. + # 0.1.17 — 2022-12-29 diff --git a/cellseg_models_pytorch/__init__.py b/cellseg_models_pytorch/__init__.py index 614d3b1..18bbe75 100644 --- a/cellseg_models_pytorch/__init__.py +++ b/cellseg_models_pytorch/__init__.py @@ -1,7 +1,7 @@ from . import inference, models, utils from .models import CellPoseUnet, HoverNet, StarDistUnet -__version__ = "0.1.17" +__version__ = "0.1.18" submodules = ["utils", "models", "inference"] __all__ = [ "__version__", diff --git a/changelog.d/20230103_104635_oskari.lehtonen.md b/changelog.d/20230103_104635_oskari.lehtonen.md deleted file mode 100644 index 9b40cce..0000000 --- a/changelog.d/20230103_104635_oskari.lehtonen.md +++ /dev/null @@ -1,4 +0,0 @@ -## Features - -- Add Multi-scale-convolutional-attention (MSCA) module (SegNexT). -- Add TokenMixer & MetaFormer modules. diff --git a/pyproject.toml b/pyproject.toml index 0a8737b..ac40af4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cellseg_models_pytorch" -version = "0.1.17" +version = "0.1.18" description = "Python library for 2D cell/nuclei instance segmentation models written with PyTorch." authors = ["Okunator "] license = "MIT"