diff --git a/CHANGELOG.md b/CHANGELOG.md
index 85fa70a..e4b21f3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,11 @@
+
+
+# 0.1.21 — 2023-07-10
+
+## Features
+
+- Add mps (Mac) support for inference
+- Add cell calss porbabilities to geojson saving utilities
# 0.1.21 — 2023-06-12
diff --git a/cellseg_models_pytorch/__init__.py b/cellseg_models_pytorch/__init__.py
index b307052..b08f71a 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.21"
+__version__ = "0.1.22"
submodules = ["utils", "models", "inference"]
__all__ = [
"__version__",
diff --git a/pyproject.toml b/pyproject.toml
index 5bf70ff..ce500dd 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cellseg_models_pytorch"
-version = "0.1.21"
+version = "0.1.22"
description = "Python library for 2D cell/nuclei instance segmentation models written with PyTorch."
authors = ["Okunator "]
license = "MIT"