Skip to content

Commit

Permalink
chore: Release version 0.7.0
Browse files Browse the repository at this point in the history
Releasing mrack version 0.7.0
  • Loading branch information
actions-user committed Mar 22, 2021
1 parent f72b329 commit ad19af0
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

<!--next-version-placeholder-->

## v0.7.0 (2021-03-22)
### Feature
* Add RPM spec file ([`17aebbb`](https://github.com/neoave/mrack/commit/17aebbbb41453cace25258695eef795320477869))
* OpenStack: increase polling time based on number of hosts ([`7558969`](https://github.com/neoave/mrack/commit/755896999e17b4b94336349ec98438a9bd532f3c))

### Fix
* Handle ServerError in all Openstack calls ([`585543a`](https://github.com/neoave/mrack/commit/585543a476debfbc9a2106e9fee2ed25014b7c82))
* Handle timeout state and treat it as an error ([`a6b9738`](https://github.com/neoave/mrack/commit/a6b9738749d3392fae99d4d1b3df9e19fc118c89))
* Podman ansible inventory and status_map ([`503a680`](https://github.com/neoave/mrack/commit/503a6802418bf8ac33cf08c0fd3468b13e7d5b74))
* Fix pylint isssues and reuse existing methods ([`788b2ff`](https://github.com/neoave/mrack/commit/788b2ff520f26a7e50601d8c450ad74c2c7a9feb))
* If mrack is run first time db may not exist ([`bd51176`](https://github.com/neoave/mrack/commit/bd51176b025390e32d3012aec26c56e055771be0))
* Require beaker version with support for python 3.9 ([`6f22bea`](https://github.com/neoave/mrack/commit/6f22bea70c963ad717b8c8ce53bb85f848b0be88))
* OpenStack provider does not crash if no credentials are provided ([`6115c1a`](https://github.com/neoave/mrack/commit/6115c1af4e8a8cb73624c7182259161e797910aa))
* Provider: await abort_and_delete ([`8f361f5`](https://github.com/neoave/mrack/commit/8f361f5525bbfc9b3fba574825518dbc1ad3c2cd))

## v0.6.0 (2021-01-27)
### Feature
* Podman support in SSH action ([`10a43f1`](https://github.com/neoave/mrack/commit/10a43f1bdaa328fad0a4fb2ad4ae57cd7ef41878))
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = "Petr Vobornik"

# The full version, including alpha/beta/rc tags
release = "0.6.0"
release = "0.7.0"

# to work with ReadTheDocs which is using version < 2.0
master_doc = 'index'
Expand Down
5 changes: 4 additions & 1 deletion mrack.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
%global srcname mrack

Name: %{srcname}
Version: 0.6.0
Version: 0.7.0
Release: 1%{?dist}
Summary: Multicloud use-case based multihost async provisioner for CIs and testing during development

Expand Down Expand Up @@ -53,5 +53,8 @@ rm -rf %{srcname}.egg-info
%{python3_sitelib}/%{srcname}-%{version}-py%{python3_version}.egg-info

%changelog
* Mon Mar 22 2021 Tibor Dudlák <[email protected]> - 0.7.0-1
- Released upstream version 0.7.0

* Thu Feb 04 2021 Armando Neto <[email protected]> - 0.6.0-1
- Initial package.
2 changes: 1 addition & 1 deletion src/mrack/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""mrack library."""
__version__ = "0.6.0"
__version__ = "0.7.0"

import logging

Expand Down

0 comments on commit ad19af0

Please sign in to comment.