mirror of https://github.com/containers/podman.git
Merge pull request #4292 from mheon/bump-1.6.2
Bump to v1.6.2 Signed-off-by: cnbattle <qiaicn@gmail.com>
This commit is contained in:
commit
2793ec29c6
2
Makefile
2
Makefile
|
@ -3,7 +3,7 @@ export GOPROXY=https://proxy.golang.org
|
|||
|
||||
GO ?= go
|
||||
DESTDIR ?=
|
||||
EPOCH_TEST_COMMIT ?= dc1f8b62b168e0815ed5e7eb7c61a26ec3a0c88c
|
||||
EPOCH_TEST_COMMIT ?= 2b0892e757c878cdb087dd22b8986bccef0276ed
|
||||
HEAD ?= HEAD
|
||||
CHANGELOG_BASE ?= HEAD~
|
||||
CHANGELOG_TARGET ?= HEAD
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
Libpod provides a library for applications looking to use the Container Pod concept,
|
||||
popularized by Kubernetes. Libpod also contains the Pod Manager tool `(Podman)`. Podman manages pods, containers, container images, and container volumes.
|
||||
|
||||
* [Latest Version: 1.6.0](https://github.com/containers/libpod/releases/latest)
|
||||
* [Latest Version: 1.6.2](https://github.com/containers/libpod/releases/latest)
|
||||
* [Continuous Integration:](contrib/cirrus/README.md) [](https://cirrus-ci.com/github/containers/libpod/master)
|
||||
* [GoDoc: ](https://godoc.org/github.com/containers/libpod/libpod)
|
||||
* Automated continuous release downloads (including remote-client):
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
- Changelog for v1.6.2 (2019-10-17)
|
||||
* Finalize release notes for v1.6.2
|
||||
* rootless: drop dependency on docker
|
||||
* Bump gitvalidation epoch
|
||||
* Bump to v1.6.2-dev
|
||||
* Refactor tests when checking for error exit codes
|
||||
* Attach stdin to container at start if it was created with --interactive
|
||||
|
||||
- Changelog for v1.6.2-rc1 (2019-10-16)
|
||||
* Add release notes for Podman 1.6.2
|
||||
* start: print full container ID
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
%global shortcommit_conmon %(c=%{commit_conmon}; echo ${c:0:7})
|
||||
|
||||
Name: podman
|
||||
Version: 1.6.2
|
||||
Version: 1.6.3
|
||||
Release: #COMMITDATE#.git%{shortcommit0}%{?dist}
|
||||
Summary: Manage Pods, Containers and Container Images
|
||||
License: ASL 2.0
|
||||
|
|
|
@ -4,7 +4,7 @@ package version
|
|||
// NOTE: remember to bump the version at the top
|
||||
// of the top-level README.md file when this is
|
||||
// bumped.
|
||||
const Version = "1.6.2-dev"
|
||||
const Version = "1.6.3-dev"
|
||||
|
||||
// RemoteAPIVersion is the version for the remote
|
||||
// client API. It is used to determine compatibility
|
||||
|
|
Loading…
Reference in New Issue