Skip to content

Commit

Permalink
Merge pull request #243 from TomasTomecek/090-release
Browse files Browse the repository at this point in the history
0.9.0
  • Loading branch information
TomasTomecek authored Jan 11, 2021
2 parents 73d60df + e405dc2 commit 0f3f301
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 7 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# 0.9.0

## Features

* 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)

* 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)
* Available at https://ansible-community.github.io/ansible-bender/build/html/index.html

## Fixes

* Make `buildah_from_extra_args` actually work, by [@TomasTomecek](https://github.com/TomasTomecek), [#217](https://github.com/ansible-community/ansible-bender/pull/217)

* 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)


# 0.8.1

## Fixes
Expand Down
19 changes: 14 additions & 5 deletions ansible-bender.spec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
%bcond_with privileged_tests

Name: ansible-bender
Version: 0.8.1
Version: 0.9.0
Release: 1%{?dist}
Summary: Build container images using Ansible playbooks

Expand Down Expand Up @@ -84,11 +84,20 @@ PYTHONPATH=%{buildroot}%{python3_sitelib} \


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

* Tue Nov 19 2019 Tomas Tomecek <[email protected]> - 0.8.0-1
- new upstream release: 0.8.0
* Tue May 26 2020 Miro Hrončok <[email protected]> - 0.8.1-3
- Rebuilt for Python 3.9

* Mon May 18 2020 Gordon Messmer <[email protected]> - 0.8.1-2
- Rebuild with fix for missing python modules.

* Mon Apr 27 2020 Gordon Messmer <[email protected]> - 0.8.1-1
- Build 0.8.1

* Tue Jan 28 2020 Fedora Release Engineering <[email protected]> - 0.7.0-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild

* Thu Oct 03 2019 Miro Hrončok <[email protected]> - 0.7.0-4
- Rebuilt for Python 3.8.0rc1 (#1748018)
Expand Down
1 change: 0 additions & 1 deletion tests/data/full_conf_pb.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
- hosts: all
vars:
key: value
key2: '{{ ansible_user }}'
ansible_bender:
base_image: mona_lisa
layering: true
Expand Down
3 changes: 2 additions & 1 deletion tests/integration/test_buildah.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@


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

0 comments on commit 0f3f301

Please sign in to comment.