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

Commit 1f595e3

Browse files
authored
Merge pull request #61 from mnecas/release_1_0_2
Release 1.0.2
2 parents 43fd35f + b343a41 commit 1f595e3

File tree

5 files changed

+36
-5
lines changed

5 files changed

+36
-5
lines changed

misc/packaging/ansible-runner-service.spec

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
%endif
55

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

7777
%changelog
78+
* Tue Apr 28 2020 Martin Necas <[email protected]> 1.0.2-1
79+
- Allow playbook parallel execution.
80+
- Add artifacts removal.
81+
- Apply logging configurations.
82+
- Handle connection to IPv6 hosts.
83+
7884
* Tue Oct 22 2019 Ondra Machacek <[email protected]> 1.0.1-1
7985
- Set runner_cache as defaultdict of dict.
8086
- Define ConnectionRefusedError for Python2.

misc/packaging/apache/ansible-runner-service.spec

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
%global srcname ansible-runner-service
22

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

100100
%changelog
101+
* Tue Apr 28 2020 Martin Necas <[email protected]> 1.0.2-1
102+
- Allow playbook parallel execution.
103+
- Add artifacts removal.
104+
- Apply logging configurations.
105+
- Handle connection to IPv6 hosts.
106+
107+
* Tue Oct 22 2019 Ondra Machacek <[email protected]> 1.0.1-1
108+
- Set runner_cache as defaultdict of dict.
109+
- Define ConnectionRefusedError for Python2.
110+
- Add ssh_private_key configuration option.
111+
- Add support to specify host port.
112+
- Add spec files.
113+
101114
* Mon Sep 2 2019 Ondra Machacek <[email protected]> 1.0.0-1
102115
- Release 1.0.0-1.

misc/packaging/nginx/ansible-runner-service-nginx.spec

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
%endif
55

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

9494

9595
%changelog
96+
* Tue Apr 28 2020 Martin Necas <[email protected]> 1.0.2-1
97+
- Allow playbook parallel execution.
98+
- Add artifacts removal.
99+
- Apply logging configurations.
100+
- Handle connection to IPv6 hosts.
101+
96102
* Tue Oct 22 2019 Ondra Machacek <[email protected]> 1.0.1-1
97103
- Set runner_cache as defaultdict of dict.
98104
- Define ConnectionRefusedError for Python2.

packaging/gunicorn/ansible-runner-service.spec

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
%global srcname ansible-runner-service
22

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

111111
%changelog
112+
* Tue Apr 28 2020 Martin Necas <[email protected]> 1.0.2-1
113+
- Allow playbook parallel execution.
114+
- Add artifacts removal.
115+
- Apply logging configurations.
116+
- Handle connection to IPv6 hosts.
117+
112118
* Tue Oct 22 2019 Ondra Machacek <[email protected]> 1.0.1-1
113119
- Set runner_cache as defaultdict of dict.
114120
- Define ConnectionRefusedError for Python2.

runner_service/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
InventoryCorruptError,
1313
InventoryOperationNotAllowed)
1414

15-
__version__ = '0.9'
15+
__version__ = '1.0.2'

0 commit comments

Comments
 (0)