Skip to content

Commit a4adfe5

Browse files
committed
Bump to v0.11.1
Signed-off-by: Matthew Heon <[email protected]>
1 parent 921ccac commit a4adfe5

File tree

3 files changed

+103
-2
lines changed

3 files changed

+103
-2
lines changed

changelog.txt

Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,104 @@
1+
- Changelog for v0.11.1 (2018-11-08)
2+
* Update release notes for 0.11.1
3+
* update seccomp.json
4+
* Touch up --log* options and daemons in man pages
5+
* Fix run --hostname test that started failing post-merge
6+
* move defer'd function declaration ahead of prepare error return
7+
* Don't fail if /etc/passwd or /etc/group does not exists
8+
* Print error status code if we fail to parse it
9+
* Properly set Running state when starting containers
10+
* Fix misspelling
11+
* Retrieve container PID from conmon
12+
* If a container ceases to exist in runc, set exit status
13+
* EXPERIMENTAL: Do not call out to runc for sync
14+
* Actually save changes from post-stop sync
15+
* rootless: mount /sys/fs/cgroup/systemd from the host
16+
* rootless: don't bind mount /sys/fs/cgroup/systemd in systemd mode
17+
* Add hostname to /etc/hosts
18+
* Temporarily fix the Python tests to fix some PRs
19+
* Remove conmon cgroup before pod cgroup for cgroupfs
20+
* Fix cleanup for "Pause a bunch of running containers"
21+
* --interactive shall keep STDIN attached even when not explicitly called out
22+
* Do never override podman with docker
23+
* Make kill, pause, and unpause parallel.
24+
* Fix long image name handling
25+
* Make restart parallel and add --all
26+
* Add ChangeAction to parse sub-options from --change
27+
* replace quay.io/baude to quay.io/libpod
28+
* Change humanize to use MB vs MiB.
29+
* allow ppc64le to pass libpod integration tests
30+
* Cirrus-CI: Add option to run system-tests
31+
* Cirrus: Skip rebuilding images unless instructed
32+
* Cirrus: Disable image build job abort on push
33+
* Cirrus: Add a readme
34+
* Ubuntu VM image build: try update twice
35+
* Cirrus: Enable updating F28 image
36+
* rootless: do not add an additional /run to runroot
37+
* rootless: avoid hang on failed slirp4netns
38+
* Fix setting of version information
39+
* runtime: do not allow runroot longer than 50 characters
40+
* attach: fix attach when cuid is too long
41+
* truncate command output in ps by default
42+
* Update the runc commit used for testing
43+
* make various changes to ps output
44+
* Sync default config with libpod.conf
45+
* Use two spaces to pad PS fields
46+
* unmount: fix error logic
47+
* get user and group information using securejoin and runc's user library
48+
* CONTRIBUTING.md: add section about describing changes
49+
* Change to exported name in ParseDevice
50+
* Vendor in latest containers/storage
51+
* fix bug in rm -fa parallel deletes
52+
* Ensure test container in running state
53+
* Add tests for selinux labels
54+
* Add --max-workers and heuristics for parallel operations
55+
* Increase security and performance when looking up groups
56+
* run prepare in parallel
57+
* downgrade runc due a rootless bug
58+
* runlabel: run any command
59+
* Eat our own dogfood
60+
* vendor: update containers/storage
61+
* Add support for /usr/local installation
62+
* create: fix writing cidfile when using rootless
63+
* Explain the device format in man pages
64+
* read conmon output and convert to json in two steps
65+
* Cirrus: Use images w/ buildah fix
66+
* Add --all and --latest to checkpoint/restore
67+
* Use the newly added getAllOrLatestContainers() function
68+
* Use the new checkAllAndLatest() function
69+
* Also factor out getAllOrLatestContainers() function
70+
* Add checkAllAndLatest() function
71+
* Downgrade code to support python3.4
72+
* Allow containers/storage to handle on SELinux labeling
73+
* Use more reliable check for rootless for firewall init
74+
* Vendor in latest containers/storage opencontainers/selinux
75+
* Make podman ps fast
76+
* Support auth file environment variable in podman build
77+
* fix environment variable parsing
78+
* tests: use existing CRIU version check
79+
* Use the CRIU version check in checkpoint/restore
80+
* Add helper function to read out CRIU version
81+
* vendor in go-criu and dependencies
82+
* oci: cleanup process status
83+
* Handle http/https in registry given to login/out
84+
* re-enable f29 testing
85+
* correct stats err with non-running containers
86+
* Use restoreArtifacts to save time in integration tests
87+
* Make rm faster
88+
* Fix man page to show info on storage
89+
* Move rootless directory handling to the libpod/pkg/util directory
90+
* Fix podman port -l
91+
* Fix trivial missing markup in manpage
92+
* Cirrus: Install CRIU in test images
93+
* Cirrus: Use different CNI_COMMIT for Fedora
94+
* Fix Cirrus/Packer VM image building
95+
* Revert "Cirrus: Enable debugging delay on non-zero exit"
96+
* Cirrus: IRC message when cirrus testing successful
97+
* cirrus: Add simple IRC messenger
98+
* fix NOTIFY_SOCKET in e2e testfix NOTIFY_SOCKET in e2e tests
99+
* Bump gitvalidation epoch
100+
* Bump to v0.10.2-dev
101+
1102
- Changelog for v0.10.1.3 (2018-10-17)
2103
* Update release notes for 0.10.1.3
3104
* Vendor in new new buildah/ci

contrib/spec/podman.spec.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
%global shortcommit_conmon %(c=%{commit_conmon}; echo ${c:0:7})
4040

4141
Name: podman
42-
Version: 0.10.2
42+
Version: 0.11.1
4343
Release: #COMMITDATE#.git%{shortcommit0}%{?dist}
4444
Summary: Manage Pods, Containers and Container Images
4545
License: ASL 2.0

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ package version
44
// NOTE: remember to bump the version at the top
55
// of the top-level README.md file when this is
66
// bumped.
7-
const Version = "0.10.2-dev"
7+
const Version = "0.11.1"

0 commit comments

Comments
 (0)