Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bulidah v1.19.6 #3022

Merged
merged 1 commit into from
Feb 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,16 @@

# Changelog

- v1.19.5 (2021-02-09)
## v1.19.6 (2021-02-18)
Bump c/containers/storage v1.24.6
Don't fail copy to emptydir
Workaround for RHEL gating test failure
Fix config-flags-verification test on F33
Fix bud capabilities test
Stop overriding the location of the blob info cache
Fix caching layers with build args

## v1.19.5 (2021-02-09)
Vendor in latest containers/image and common

## v1.19.4 (2021-02-06)
Expand Down
2 changes: 1 addition & 1 deletion buildah.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const (
Package = "buildah"
// Version for the Package. Bump version in contrib/rpm/buildah.spec
// too.
Version = "1.19.5"
Version = "1.19.6"
// The value we use to identify what type of information, currently a
// serialized Builder structure, we are using as per-container state.
// This should only be changed when we make incompatible changes to
Expand Down
10 changes: 10 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@

- Changelog for v1.19.6 (2021-02-18)
* Bump c/containers/storage v1.24.6
* Don't fail copy to emptydir
* Workaround for RHEL gating test failure
* Fix config-flags-verification test on F33
* Fix bud capabilities test
* Stop overriding the location of the blob info cache
* Fix caching layers with build args

- Changelog for v1.19.5 (2021-02-09)
* Vendor in latest containers/image and common

Expand Down
11 changes: 10 additions & 1 deletion contrib/rpm/buildah.spec
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

Name: buildah
# Bump version in buildah.go too
Version: 1.19.5
Version: 1.19.6
Release: 1.git%{shortcommit}%{?dist}
Summary: A command line tool used to creating OCI Images
License: ASL 2.0
Expand Down Expand Up @@ -100,6 +100,15 @@ make DESTDIR=%{buildroot} PREFIX=%{_prefix} install install.completions
%{_datadir}/bash-completion/completions/*

%changelog
* Thu Feb 18, 2021 Tom Sweeney <[email protected]> 1.19.6-1
- Bump c/containers/storage v1.24.6
- Don't fail copy to emptydir
- Workaround for RHEL gating test failure
- Fix config-flags-verification test on F33
- Fix bud capabilities test
- Stop overriding the location of the blob info cache
- Fix caching layers with build args

* Tue Feb 9, 2021 Dan Walsh <[email protected]> 1.19.5-1
- Vendor in latest containers/image and common

Expand Down