Skip to content

Commit 0f3f301

Browse files
authored
Merge pull request #243 from TomasTomecek/090-release
0.9.0
2 parents 73d60df + e405dc2 commit 0f3f301

File tree

4 files changed

+32
-7
lines changed

4 files changed

+32
-7
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# 0.9.0
2+
3+
## Features
4+
5+
* Make it possible to set entrypoint for a working_container, by [@Smeds](https://github.com/Smeds), [#232](https://github.com/ansible-community/ansible-bender/pull/232)
6+
7+
* Add sphinx based docs with read-the-docs theme for ansible-bender, by [@kmehant](https://github.com/kmehant), [#215](https://github.com/ansible-community/ansible-bender/pull/215)
8+
* Available at https://ansible-community.github.io/ansible-bender/build/html/index.html
9+
10+
## Fixes
11+
12+
* Make `buildah_from_extra_args` actually work, by [@TomasTomecek](https://github.com/TomasTomecek), [#217](https://github.com/ansible-community/ansible-bender/pull/217)
13+
14+
* Python packaging was polished, by [@gordonmessmer](https://github.com/gordonmessmer), [#227](https://github.com/ansible-community/ansible-bender/pull/227), [224](https://github.com/ansible-community/ansible-bender/pull/224), [#225](https://github.com/ansible-community/ansible-bender/pull/225)
15+
16+
117
# 0.8.1
218

319
## Fixes

ansible-bender.spec

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
%bcond_with privileged_tests
77

88
Name: ansible-bender
9-
Version: 0.8.1
9+
Version: 0.9.0
1010
Release: 1%{?dist}
1111
Summary: Build container images using Ansible playbooks
1212

@@ -84,11 +84,20 @@ PYTHONPATH=%{buildroot}%{python3_sitelib} \
8484

8585

8686
%changelog
87-
* Thu Dec 12 2019 Tomas Tomecek <[email protected]> - 0.8.1-1
88-
- new upstream release: 0.8.1
87+
* Mon Jul 27 2020 Fedora Release Engineering <[email protected]> - 0.8.1-4
88+
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
8989

90-
* Tue Nov 19 2019 Tomas Tomecek <[email protected]> - 0.8.0-1
91-
- new upstream release: 0.8.0
90+
* Tue May 26 2020 Miro Hrončok <[email protected]> - 0.8.1-3
91+
- Rebuilt for Python 3.9
92+
93+
* Mon May 18 2020 Gordon Messmer <[email protected]> - 0.8.1-2
94+
- Rebuild with fix for missing python modules.
95+
96+
* Mon Apr 27 2020 Gordon Messmer <[email protected]> - 0.8.1-1
97+
- Build 0.8.1
98+
99+
* Tue Jan 28 2020 Fedora Release Engineering <[email protected]> - 0.7.0-5
100+
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
92101

93102
* Thu Oct 03 2019 Miro Hrončok <[email protected]> - 0.7.0-4
94103
- Rebuilt for Python 3.8.0rc1 (#1748018)

tests/data/full_conf_pb.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
- hosts: all
22
vars:
33
key: value
4-
key2: '{{ ansible_user }}'
54
ansible_bender:
65
base_image: mona_lisa
76
layering: true

tests/integration/test_buildah.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525

2626

2727
@pytest.mark.parametrize("image_name,found", [
28-
("registry.fedoraproject.org/fedora:29", True),
28+
("registry.fedoraproject.org/fedora:33", True),
29+
("registry.access.redhat.com/ubi8/python-38", True),
2930
(base_image, True),
3031
("docker.io/library/busybox", False),
3132
])

0 commit comments

Comments
 (0)