From 33d1b85be9110159a93ae552358f86a03a27d109 Mon Sep 17 00:00:00 2001
From: Tor-Einar Skog <tor-einar.skog@nibio.no>
Date: Wed, 8 Feb 2023 09:26:04 +0100
Subject: [PATCH] bump version 0.1.6 -> 0.1.7

---
 README.md      | 8 ++++----
 pyproject.toml | 4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/README.md b/README.md
index 4046682..554be83 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.6
+pip3 install git+https://gitlab.nibio.no/VIPS/vipscore-python-common.git@v0.1.7
 ```
 ...where the version is specified after the `@`
 
@@ -84,12 +84,12 @@ $ . venv/bin/activate
 $ pip install -e .
 $ pip install build pytest twine
 $ python3 -m build
--> Successfully built vipscore_common-0.1.6.tar.gz and vipscore_common-0.1.6-py3-none-any.whl
+-> Successfully built vipscore_common-0.1.7.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.6-py3-none-any.whl
+-> Uploading vipscore_common-0.1.7-py3-none-any.whl
 -> 201 Created
--> Uploading vipscore_common-0.1.6.tar.gz
+-> Uploading vipscore_common-0.1.7.tar.gz
 -> 201 Created
 ```
diff --git a/pyproject.toml b/pyproject.toml
index 9e4e1fd..4d65c1d 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
 
 [project]
 name = "vipscore_common"
-version = "0.1.6"
+version = "0.1.7"
 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.6"
+current_version = "0.1.7"
 version_pattern = "MAJOR.MINOR.PATCH"
 commit_message = "bump version {old_version} -> {new_version}"
 commit = true
-- 
GitLab