diff --git a/README.md b/README.md
index bd6f19e029390263d2b0c94f9030efa540ee9dff..392ffb5a3ea5910cc214dc1ef298dcbadc4ff1b8 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@ This is the source code for the module that contains the common data models and
 # From local path, if you've cloned the Git repo
 pip3 install /home/foo/vipscore-python-common/
 # From GitLab
-pip3 install git+https://gitlab.nibio.no/VIPS/vipscore-python-common.git@v0.1.10
+pip3 install git+https://gitlab.nibio.no/VIPS/vipscore-python-common.git@v0.2.0
 ```
 ...where the version is specified after the `@`
 
@@ -86,12 +86,12 @@ $ . venv/bin/activate
 $ pip install -e .
 $ pip install build pytest twine
 $ python3 -m build
--> Successfully built vipscore_common-0.1.10.tar.gz and vipscore_common-0.1.6-py3-none-any.whl
+-> Successfully built vipscore_common-0.2.0.tar.gz and vipscore_common-0.1.6-py3-none-any.whl
 $ pytest
 -> [100%] ======================= 2 passed in 0.27s ==========================
 $ python3 -m twine upload --repository gitlab dist/* --verbose
--> Uploading vipscore_common-0.1.10-py3-none-any.whl
+-> Uploading vipscore_common-0.2.0-py3-none-any.whl
 -> 201 Created
--> Uploading vipscore_common-0.1.10.tar.gz
+-> Uploading vipscore_common-0.2.0.tar.gz
 -> 201 Created
 ```
diff --git a/pyproject.toml b/pyproject.toml
index bc3c174cf15a81dc5ef9ea107059f3166a574695..aee2bedb406d87a6021dfb5c45f973433ecb27dc 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
 
 [project]
 name = "vipscore_common"
-version = "0.1.10"
+version = "0.2.0"
 description = "Tools for the VIPSCore-Python web services and its models"
 readme = "README.md"
 authors = [{ name="Tor-Einar Skog", email="tor-einar.skog@nibio.no" }]
@@ -27,7 +27,7 @@ requires-python = ">=3.9"
 dev = ["bumpver", "pytest"]
 
 [tool.bumpver]
-current_version = "0.1.10"
+current_version = "0.2.0"
 version_pattern = "MAJOR.MINOR.PATCH"
 commit_message = "bump version {old_version} -> {new_version}"
 commit = true