From c3e625abe85757a996f35bef2b3638f00074621a Mon Sep 17 00:00:00 2001
From: Peter Neher
Date: Fri, 8 Mar 2019 12:14:41 +0100
Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.2.9=20=E2=86=92=201.2.10?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.bumpversion.cfg | 2 +-
cmdint/__init__.py | 2 +-
setup.py | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index 2808f39..eb7345e 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 1.2.9
+current_version = 1.2.10
commit = True
tag = True
diff --git a/cmdint/__init__.py b/cmdint/__init__.py
index 555772a..e62c24f 100644
--- a/cmdint/__init__.py
+++ b/cmdint/__init__.py
@@ -1,4 +1,4 @@
-__version__ = "1.2.9"
+__version__ = "1.2.10"
__copyright__ = "Copyright 2018, German Cancer Research Center (DKFZ), Division of Medical Image Computing"
from cmdint.CmdInterface import CmdInterface
diff --git a/setup.py b/setup.py
index 10044e1..26d1730 100644
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
from setuptools import setup
setup(name='cmdint',
- version='1.2.9',
+ version='1.2.10',
description='Enables detailed logging of command line calls in a very lightweight manner.',
long_description='CmdInterface enables detailed logging of command line and python experiments in a very lightweight manner (coding wise). It wraps your command line or python function calls in a few lines of code and logs everything you might need to reproduce the experiment later on or to simply check what you did a couple of years ago.',
url='https://github.com/MIC-DKFZ/cmdint/',