diff --git a/CHANGELOG.md b/CHANGELOG.md index 124cb068..b91a5c34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,43 @@ +## v1.17.0 (2023-10-23) + +### Chore + +* chore(ci): Temporarely remove packit tests + +Until secret injection issue into test farm is solved + +Signed-off-by: David Pascual <davherna@redhat.com> ([`5251d90`](https://github.com/neoave/mrack/commit/5251d9014b65b4106a98495321ab4c2ad3de9874)) + +* chore(release): Update semantic release action name and version + +Updating action to new name and latest version. +This should not affect behaviour. + +Signed-off-by: David Pascual <davherna@redhat.com> ([`97a5355`](https://github.com/neoave/mrack/commit/97a5355daf112b447847a2f9dded377389593222)) + +* chore(release): Upload distribution package to release assets + +To fix fedora release, broken in https://github.com/neoave/mrack/pull/272 + +Fixes https://github.com/neoave/mrack/issues/273 + +Signed-off-by: David Pascual <davherna@redhat.com> ([`6d6cdc6`](https://github.com/neoave/mrack/commit/6d6cdc64c4410f99ba1bea4482ead1264b75247c)) + +### Feature + +* feat(openstack): Append API version to auth_url in credentials + +This will save a manual step for the users when setting up clouds.yaml file, +as auth_url field is usually generated without specifying the version. + +Version specification is needed by asyncopenstackclient libray + +Signed-off-by: David Pascual <davherna@redhat.com> ([`3a59761`](https://github.com/neoave/mrack/commit/3a597615b9e28e1304ca2af3d1914db549f9f04c)) + + ## v1.16.0 (2023-10-09) ### Chore diff --git a/docs/conf.py b/docs/conf.py index 9eaf29bb..e4f6f680 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.16.0" +release = "1.17.0" # to work with ReadTheDocs which is using version < 2.0 master_doc = "index" diff --git a/mrack.spec b/mrack.spec index 9b2c8eb5..5411d19a 100644 --- a/mrack.spec +++ b/mrack.spec @@ -1,5 +1,5 @@ Name: mrack -Version: 1.16.0 +Version: 1.17.0 Release: 1%{?dist} Summary: Multicloud use-case based multihost async provisioner @@ -184,6 +184,12 @@ rm -r src/%{name}.egg-info %{python3_sitelib}/%{name}/providers/utils/{,__pycache__/}testcloud.* %changelog +* Mon Oct 23 2023 David Pascual Hernandez - 1.17.0-1 +- 5251d90 chore(ci): Temporarely remove packit tests (David Pascual) +- 3a59761 feat(openstack): Append API version to auth_url in credentials (David Pascual) +- 97a5355 chore(release): Update semantic release action name and version (David Pascual) +- 6d6cdc6 chore(release): Upload distribution package to release assets (David Pascual) + * Mon Oct 09 2023 David Pascual Hernandez - 1.16.0-1 - e8e20f1 chore(ci): Fix release workflow build step checking out wrong commit (David Pascual) - 97a7cd0 chore: Bump asyncopenstackclient dependency version (David Pascual) diff --git a/src/mrack/version.py b/src/mrack/version.py index 35033739..14afd8f1 100644 --- a/src/mrack/version.py +++ b/src/mrack/version.py @@ -1,2 +1,2 @@ """mrack library version.""" -VERSION = "1.16.0" +VERSION = "1.17.0"