From 9716421d67990ae8791261053660552490300024 Mon Sep 17 00:00:00 2001
From: Klaus Reuter <khr@mpcdf.mpg.de>
Date: Thu, 25 Jan 2024 12:54:00 +0100
Subject: [PATCH] prepare version bump to 0.1.9

---
 .gitlab-ci.yml       | 2 +-
 condainer/version.py | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d2c0742..de57daa 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,4 +1,4 @@
-basic:
+basic_dryruns:
   image: continuumio/miniconda3:latest
   tags:
     - cloud
diff --git a/condainer/version.py b/condainer/version.py
index d877cb4..b5b1a9d 100644
--- a/condainer/version.py
+++ b/condainer/version.py
@@ -3,7 +3,7 @@
 Single location for the version information.
 """
 
-ver = (0, 1, 8)
+ver = (0, 1, 9)
 
 def get_version_string():
     """Return the full version number."""
@@ -14,4 +14,4 @@ def get_short_version_string():
     return '.'.join(map(str, ver[:-1]))
 
 def get_descriptive_version_string():
-    return "Condainer " + get_version_string()
\ No newline at end of file
+    return "Condainer " + get_version_string()
-- 
GitLab