From 079c3dc91a2b60b7cfbba1223e7a4d3ec4fba9cc Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 16 Jul 2024 07:57:53 +0000 Subject: [PATCH] chore: Release version 1.20.0 Releasing new mrack version --- CHANGELOG.md | 16 ++++++++++++++++ docs/conf.py | 2 +- mrack.spec | 6 +++++- src/mrack/version.py | 2 +- 4 files changed, 23 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e881e30..40672a9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ +## v1.20.0 (2024-07-16) + +### Chore + +* chore: Update deprecated actions + +Due to warnings shown in https://github.com/neoave/mrack/actions/runs/9302766806 +It updates actions to new version with Node 20 + +Signed-off-by: David Pascual <davherna@redhat.com> ([`236393c`](https://github.com/neoave/mrack/commit/236393ccd2f16e13fec230b62232fb4bd2fc08ea)) + +### Feature + +* feat: Add support for translanting %pre and main body part of kickstart ([`feeae04`](https://github.com/neoave/mrack/commit/feeae04835574655aff2397dd78a5e1522c5156b)) + + ## v1.19.0 (2024-05-30) ### Chore diff --git a/docs/conf.py b/docs/conf.py index 655339d5..e573e58f 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.19.0" +release = "1.20.0" # to work with ReadTheDocs which is using version < 2.0 master_doc = "index" diff --git a/mrack.spec b/mrack.spec index ace59e37..20755f1e 100644 --- a/mrack.spec +++ b/mrack.spec @@ -1,5 +1,5 @@ Name: mrack -Version: 1.19.0 +Version: 1.20.0 Release: 1%{?dist} Summary: Multicloud use-case based multihost async provisioner @@ -185,6 +185,10 @@ rm -r src/%{name}.egg-info %{python3_sitelib}/%{name}/providers/utils/{,__pycache__/}testcloud.* %changelog +* Tue Jul 16 2024 David Pascual Hernandez - 1.20.0-1 +- feeae04 feat: Add support for translanting %pre and main body part of kickstart (David Pascual) +- 236393c chore: Update deprecated actions (David Pascual) + * Thu May 30 2024 David Pascual Hernandez - 1.19.0-1 - 6f81e37 test: speed-up tests by mocking gethostbyaddr (Petr Vobornik) - 587a9c7 fix(beaker): supress 10_avc_check restraint plugin (Petr Vobornik) diff --git a/src/mrack/version.py b/src/mrack/version.py index 8613c58c..984e8307 100644 --- a/src/mrack/version.py +++ b/src/mrack/version.py @@ -1,3 +1,3 @@ """mrack library version.""" -VERSION = "1.19.0" +VERSION = "1.20.0"