Skip to content

Commit

Permalink
release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sispheor committed Feb 2, 2023
1 parent 858cc90 commit 4f937c0
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# 1.3.0 2023-02-02

## Fix

- exit Monkeyble on missing var

## Feature

- added "❌ MONKEYBLE ERROR ❌" in logs output when scenario failed
- added "monkeyble_shared_tasks"

# 1.2.0 2022-12-02

## Breaking changes
Expand Down
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace: hpe
name: monkeyble

# The version of the collection. Must be compatible with semantic versioning
version: 1.2.0
version: 1.3.0

# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md
Expand Down
2 changes: 1 addition & 1 deletion monkeyble/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# https://www.python.org/dev/peps/pep-0440/
__version__ = "1.2.0"
__version__ = "1.3.0"
2 changes: 1 addition & 1 deletion plugins/callback/monkeyble_callback.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
from ansible.plugins.callback import CallbackBase
from ansible.template import Templar
from ansible.utils.display import Display
from monkeyble._version import __version__


BASE_DIR = os.path.abspath(
Expand All @@ -23,6 +22,7 @@
from plugins.module_utils.utils import str_to_bool, switch_test_method, get_task_config
from plugins.module_utils.const import PASSED_TEST, FAILED_TEST
from plugins.module_utils.exceptions import MonkeybleException
from plugins.module_utils._version import __version__

global_display = Display()

Expand Down
1 change: 1 addition & 0 deletions plugins/module_utils/_version.py
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "monkeyble"
version = "1.2.0" # /!\ version placed in monkeyble._version and in galaxy.yml files too
version = "1.3.0" # /!\ version placed in monkeyble._version and in galaxy.yml files too
description = "End-to-end testing framework for Ansible"
authors = ["Nicolas Marcq <[email protected]>"]
license = "GNU General Public License v3 (GPLv3)"
Expand Down

0 comments on commit 4f937c0

Please sign in to comment.