Skip to content
This repository has been archived by the owner on May 23, 2024. It is now read-only.

Commit

Permalink
Merge pull request #61 from mnecas/release_1_0_2
Browse files Browse the repository at this point in the history
Release 1.0.2
  • Loading branch information
mwperina committed Apr 28, 2020
2 parents 43fd35f + b343a41 commit 1f595e3
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 5 deletions.
8 changes: 7 additions & 1 deletion misc/packaging/ansible-runner-service.spec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
%endif

Name: ansible-runner-service
Version: 1.0.1
Version: 1.0.2
Release: 1%{?dist}
Summary: RESTful API for ansible/ansible_runner execution
Source0: https://github.com/pcuzner/%{name}/archive/%{name}-%{version}.tar.gz
Expand Down Expand Up @@ -75,6 +75,12 @@ install -m 0644 ./LICENSE.md %{buildroot}%{_docdir}/ansible-runner-service
%{_docdir}/ansible-runner-service/*

%changelog
* Tue Apr 28 2020 Martin Necas <mnecas@redhat.com> 1.0.2-1
- Allow playbook parallel execution.
- Add artifacts removal.
- Apply logging configurations.
- Handle connection to IPv6 hosts.

* Tue Oct 22 2019 Ondra Machacek <omachace@redhat.com> 1.0.1-1
- Set runner_cache as defaultdict of dict.
- Define ConnectionRefusedError for Python2.
Expand Down
15 changes: 14 additions & 1 deletion misc/packaging/apache/ansible-runner-service.spec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%global srcname ansible-runner-service

Name: %{srcname}
Version: 1.0.1
Version: 1.0.2
Release: 1%{?dist}
Summary: RESTful API for ansible/ansible_runner execution
Source0: https://github.com/ansible/%{name}/archive/%{name}-%{version}.tar.gz
Expand Down Expand Up @@ -98,5 +98,18 @@ install -m 644 ./logging.yaml %{buildroot}%{_sysconfdir}/ansible-runner-service
%doc README.md

%changelog
* Tue Apr 28 2020 Martin Necas <mnecas@redhat.com> 1.0.2-1
- Allow playbook parallel execution.
- Add artifacts removal.
- Apply logging configurations.
- Handle connection to IPv6 hosts.

* Tue Oct 22 2019 Ondra Machacek <omachace@redhat.com> 1.0.1-1
- Set runner_cache as defaultdict of dict.
- Define ConnectionRefusedError for Python2.
- Add ssh_private_key configuration option.
- Add support to specify host port.
- Add spec files.

* Mon Sep 2 2019 Ondra Machacek <omachace@redhat.com> 1.0.0-1
- Release 1.0.0-1.
8 changes: 7 additions & 1 deletion misc/packaging/nginx/ansible-runner-service-nginx.spec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
%endif

Name: ansible-runner-service
Version: 1.0.1
Version: 1.0.2
Release: 1%{?dist}
Summary: RESTful API for ansible/ansible_runner execution
Source0: https://github.com/ansible/%{name}/archive/%{name}-%{version}.tar.gz
Expand Down Expand Up @@ -93,6 +93,12 @@ install -m 0644 ./misc/nginx/uwsgi.ini %{buildroot}%{_sysconfdir}/ansible-runner


%changelog
* Tue Apr 28 2020 Martin Necas <mnecas@redhat.com> 1.0.2-1
- Allow playbook parallel execution.
- Add artifacts removal.
- Apply logging configurations.
- Handle connection to IPv6 hosts.

* Tue Oct 22 2019 Ondra Machacek <omachace@redhat.com> 1.0.1-1
- Set runner_cache as defaultdict of dict.
- Define ConnectionRefusedError for Python2.
Expand Down
8 changes: 7 additions & 1 deletion packaging/gunicorn/ansible-runner-service.spec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%global srcname ansible-runner-service

Name: %{srcname}
Version: 1.0.1
Version: 1.0.2
Release: 1%{?dist}
Summary: RESTful API for ansible/ansible_runner execution
Source0: https://github.com/ansible/%{name}/archive/%{name}-%{version}.tar.gz
Expand Down Expand Up @@ -109,6 +109,12 @@ cp -r ./packaging/ansible-runner-service.service %{buildroot}%{_unitdir}
%doc README.md

%changelog
* Tue Apr 28 2020 Martin Necas <mnecas@redhat.com> 1.0.2-1
- Allow playbook parallel execution.
- Add artifacts removal.
- Apply logging configurations.
- Handle connection to IPv6 hosts.

* Tue Oct 22 2019 Ondra Machacek <omachace@redhat.com> 1.0.1-1
- Set runner_cache as defaultdict of dict.
- Define ConnectionRefusedError for Python2.
Expand Down
2 changes: 1 addition & 1 deletion runner_service/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
InventoryCorruptError,
InventoryOperationNotAllowed)

__version__ = '0.9'
__version__ = '1.0.2'

0 comments on commit 1f595e3

Please sign in to comment.