diff --git a/CHANGES.rst b/CHANGES.rst index 5366dc14f..cf7b2e22e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,10 @@ Changelog --------- +1.4.7 (2020-05-04) +++++++++++++++++++ +- Fix an issue with extra_vars serialization + 1.4.6 (2020-03-26) ++++++++++++++++++ - Fixed a bug that broke Ansible playbook execution prior to version 2.8 of diff --git a/docs/conf.py b/docs/conf.py index 562efb12e..70a6b5786 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -28,7 +28,7 @@ # The short X.Y version version = '' # The full version, including alpha/beta/rc tags -release = '1.4.6' +release = '1.4.7' # -- General configuration --------------------------------------------------- diff --git a/packaging/rpm/ansible-runner.spec.j2 b/packaging/rpm/python-ansible-runner.spec.j2 similarity index 97% rename from packaging/rpm/ansible-runner.spec.j2 rename to packaging/rpm/python-ansible-runner.spec.j2 index 9f3e53244..a061722f3 100644 --- a/packaging/rpm/ansible-runner.spec.j2 +++ b/packaging/rpm/python-ansible-runner.spec.j2 @@ -10,7 +10,7 @@ %bcond_with python3 %endif -Name: %{pypi_name} +Name: python-%{pypi_name} Version: {{ version }} Release: {{ release }}%{?dist} Summary: A tool and python library to interface with Ansible @@ -128,6 +128,9 @@ ln -s %{_bindir}/ansible-runner-%{python2_version} %{buildroot}/%{_bindir}/ansib %endif %changelog +* Mon May 04 2020 Rabi Mishra - 1.4.7-1 +- Ansible Runner 1.4.7-1 + * Thu Mar 19 2020 Ryan Petrello - 1.4.6-1 - Ansible Runner 1.4.6-1 diff --git a/setup.py b/setup.py index 8b1c590e1..8099f7852 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="ansible-runner", - version="1.4.6", + version="1.4.7", author='Red Hat Ansible', url="https://github.com/ansible/ansible-runner", license='Apache',