From 09c5b61d5a4b1f24c68ba9445ab408a40785e3ab Mon Sep 17 00:00:00 2001 From: leufen1 <l.leufen@fz-juelich.de> Date: Mon, 8 Feb 2021 17:29:08 +0100 Subject: [PATCH] updated CHANGELOG and version number --- CHANGELOG.md | 10 ++++++++++ mlair/__init__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f59375d..d3989b65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ # Changelog All notable changes to this project will be documented in this file. +## v1.2.1 - 2021-02-08 - bug fix for recursive import error + +### general: + +* applied bug fix + +### technical: + +* bug fix for recursive import error, #269 + ## v1.2.0 - 2020-12-18 - parallel preprocessing and improved data handlers ### general: diff --git a/mlair/__init__.py b/mlair/__init__.py index e9a157ca..e8ad9509 100644 --- a/mlair/__init__.py +++ b/mlair/__init__.py @@ -1,7 +1,7 @@ __version_info__ = { 'major': 1, 'minor': 2, - 'micro': 0, + 'micro': 1, } from mlair.run_modules import RunEnvironment, ExperimentSetup, PreProcessing, ModelSetup, Training, PostProcessing -- GitLab