mirror of
https://github.com/containers/podman.git
synced 2025-06-21 01:19:15 +08:00
2
Makefile
2
Makefile
@ -1,5 +1,5 @@
|
|||||||
GO ?= go
|
GO ?= go
|
||||||
EPOCH_TEST_COMMIT ?= 4c8c000f3aa0b25577338f805a07c16518890b3d
|
EPOCH_TEST_COMMIT ?= b2344b83ed0bbbd1f8e3ec5efdf09c81ad169941
|
||||||
HEAD ?= HEAD
|
HEAD ?= HEAD
|
||||||
CHANGELOG_BASE ?= HEAD~
|
CHANGELOG_BASE ?= HEAD~
|
||||||
CHANGELOG_TARGET ?= HEAD
|
CHANGELOG_TARGET ?= HEAD
|
||||||
|
@ -1,3 +1,36 @@
|
|||||||
|
- Changelog for v0.7.1 (2018-07-06)
|
||||||
|
* pkg/ctime: Factor libpod/finished* into a separate package
|
||||||
|
* Block use of /proc/acpi from inside containers
|
||||||
|
* remove buildah requirement for the libpod image library
|
||||||
|
* contrib/python/test/test_tunnel: Fix -nNT -> -nNTq
|
||||||
|
* Refactor podman/utils with a single container start and attach function
|
||||||
|
* Remove now-unneeded cleanupCgroup() for unsupported OS
|
||||||
|
* Remove per-container CGroup parents
|
||||||
|
* Fix nits and GOPATH in tutorial
|
||||||
|
* spec: Make addPrivilegedDevices and createBlockIO per-platform
|
||||||
|
* libpod/runtime_pod: Make removePod per-platform
|
||||||
|
* libpod/networking_unsupported: Remove JoinNetworkNameSpace
|
||||||
|
* .travis: Run gofmt and lint on OS X
|
||||||
|
* rootless: Merge rootless.go back into rootless_linux.go
|
||||||
|
* Makefile: Use a pattern rule for cross-compilation
|
||||||
|
* more changes to compile darwin
|
||||||
|
* Fix timeout issue with built-in volume test
|
||||||
|
* rootless: add /run/user/$UID to the lookup paths
|
||||||
|
* rootless: add function to retrieve the original UID
|
||||||
|
* rootless: always set XDG_RUNTIME_DIR
|
||||||
|
* rootless: set XDG_RUNTIME_DIR also for state and exec
|
||||||
|
* libpod/container: Replace containerState* with containerPlatformState
|
||||||
|
* urfave/cli: fix parsing of short opts
|
||||||
|
* docs: Follow man-pages(7) suggestions for SYNOPSIS
|
||||||
|
* Allow multiple mounts
|
||||||
|
* Makefile: Use 'git diff' to show gofmt changes
|
||||||
|
* Skip a test in Travis that has timeout issues
|
||||||
|
* vendor in selinux and buildah for darwin compilation
|
||||||
|
* add image user to inspect data
|
||||||
|
* changes to allow for darwin compilation
|
||||||
|
* Bump gitvalidation epoch
|
||||||
|
* Bump to v0.7.1-dev
|
||||||
|
|
||||||
- Changelog for v0.6.5 (2018-06-29)
|
- Changelog for v0.6.5 (2018-06-29)
|
||||||
* Fix built-in volume issue with podman run/create
|
* Fix built-in volume issue with podman run/create
|
||||||
* Add `podman container cleanup` to CLI
|
* Add `podman container cleanup` to CLI
|
||||||
|
@ -51,7 +51,7 @@
|
|||||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||||
|
|
||||||
Name: podman
|
Name: podman
|
||||||
Version: 0.7.1
|
Version: 0.7.2
|
||||||
Release: #COMMITDATE#.git%{shortcommit}%{?dist}
|
Release: #COMMITDATE#.git%{shortcommit}%{?dist}
|
||||||
Summary: Manage Pods, Containers and Container Images
|
Summary: Manage Pods, Containers and Container Images
|
||||||
License: ASL 2.0
|
License: ASL 2.0
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
package version
|
package version
|
||||||
|
|
||||||
// Version is the version of the build.
|
// Version is the version of the build.
|
||||||
const Version = "0.7.1-dev"
|
const Version = "0.7.2-dev"
|
||||||
|
Reference in New Issue
Block a user