From 2e76b4f606de6ae70cbf8f7acb2d43cb7c6e337a Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 20 Sep 2022 11:14:05 +0000 Subject: [PATCH] chore: Release version 1.7.0 Releasing mrack version 1.7.0 --- CHANGELOG.md | 11 +++++++++++ docs/conf.py | 2 +- mrack.spec | 5 ++++- src/mrack/version.py | 2 +- 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c39cbf7c..0add0af1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ +## v1.7.0 (2022-09-20) +### Feature +* **Beaker:** Specify ks_append per host or config ([`59ba489`](https://github.com/neoave/mrack/commit/59ba489e70e7c83fc56d006ca0073d010dd4564f)) +* **Beaker:** Support configurable jobxml specs ([`e9b6fa7`](https://github.com/neoave/mrack/commit/e9b6fa7a1c7bd550953d5905f5fe262787559070)) +* **Beaker:** Support custom configurable ks_meta values ([`e167443`](https://github.com/neoave/mrack/commit/e16744346169ca375cea005c9e5989ff30bfc43b)) + +### Fix +* **Beaker:** Do not throw an Exception when not authenticated ([`d1b794b`](https://github.com/neoave/mrack/commit/d1b794b9622b27a6c776e9699bb21bb7032db173)) +* Issue when searching for value when dict_name == attr ([`98255c7`](https://github.com/neoave/mrack/commit/98255c78ec52053c508170238951daff90f4f5c6)) +* Beaker log polling to logfile instead of console ([`be560d9`](https://github.com/neoave/mrack/commit/be560d9b59fae0f8d142e737db99d7077ee8cf92)) + ## v1.6.0 (2022-07-27) ### Feature * **pytest-multihost:** Arbitrary attributes for hosts ([`d0c28f6`](https://github.com/neoave/mrack/commit/d0c28f62dad1cb8cf99704973209102cc0deab2f)) diff --git a/docs/conf.py b/docs/conf.py index c5c7c08c..f5ca9e91 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = "Petr Vobornik" # The full version, including alpha/beta/rc tags -release = "1.6.0" +release = "1.7.0" # to work with ReadTheDocs which is using version < 2.0 master_doc = 'index' diff --git a/mrack.spec b/mrack.spec index eb9019ab..3cdd140d 100644 --- a/mrack.spec +++ b/mrack.spec @@ -2,7 +2,7 @@ %global srcname mrack Name: %{srcname} -Version: 1.6.0 +Version: 1.7.0 Release: 1%{?dist} Summary: Multicloud use-case based multihost async provisioner for CIs and testing during development @@ -56,6 +56,9 @@ rm -rf %{srcname}.egg-info %{python3_sitelib}/%{srcname}-%{version}-py%{python3_version}.egg-info %changelog +* Tue Sep 20 2022 Tibor Dudlák - 1.7.0-1 +- Released upstream version 1.7.0 + * Wed Jul 27 2022 Tibor Dudlák - 1.6.0-1 - Released upstream version 1.6.0 diff --git a/src/mrack/version.py b/src/mrack/version.py index 46d940dd..2b16b21c 100644 --- a/src/mrack/version.py +++ b/src/mrack/version.py @@ -1,2 +1,2 @@ """mrack library version.""" -VERSION = "1.6.0" +VERSION = "1.7.0"