Skip to content

Commit e08f842

Browse files
committed
release v0.3.0
Signed-off-by: Liang Chenye <[email protected]>
1 parent 20af327 commit e08f842

File tree

3 files changed

+35
-3
lines changed

3 files changed

+35
-3
lines changed

Diff for: CHANGELOG.md

+32
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
# v0.3.0
2+
3+
## Additions
4+
5+
* cmd/runtimetest: Adopt `DevicesAvailable` RFC code (#502).
6+
* cmd/runtimetest: Adopt `DefaultRuntimeLinuxSymlinks`, `DefaultDevices`,
7+
`LinuxProcOomScoreAdjSet`, `MountsInOrder`, `SpecVersionInSemVer`,
8+
`PosixHooksPathAbs`, `ProcCwdAbs`, `ProcArgsOneEntryRequired`,
9+
`PosixProcRlimitsErrorOnDup`, `MountsDestAbs`, `MountsDestOnWindowsNotNested`,
10+
`PlatformSpecConfOnWindowsSet`, `MaskedPathsAbs`, `ReadonlyPathsAbs`
11+
RFC codes (#500).
12+
* specerror: Turn all the RFC 2119 key words described in runtime-spec
13+
to RFC codes (#498, #497, #481, #458).
14+
* specerror: Add SplitLevel helper, Implement `--compliance-level` (#492).
15+
* generate: generate smoke test (#491).
16+
* travis: Add go 1.9 version (#487).
17+
* rootfs-{arch}.tar.gz: Add per-arch tarballs (#479).
18+
* generate: Add `--linux-device-cgroup-add` and
19+
`--linux-device-cgroup-remove` (#446).
20+
* filepath: Add a stand-alone package for explicit-OS path logic (#445).
21+
22+
## Minor fixes and documentation
23+
24+
* cmd/runtimetest: Fix nil reference (#494).
25+
* man: Fix typo (#493).
26+
* generate: Correct rootfs default, allow unset "type" fields
27+
in resource devices whitelist (#491).
28+
* validate: Fix compile issue (#490).
29+
* bash: Fix command (#489).
30+
* validate: Fix cap valiadtion (#488).
31+
* generate: Fix rootfs-propagation (#484).
32+
133
# v0.2.0
234

335
## Additions

Diff for: cmd/oci-runtime-tool/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ func main() {
1616
app := cli.NewApp()
1717
app.Name = "oci-runtime-tool"
1818
if gitCommit != "" {
19-
app.Version = fmt.Sprintf("0.2.0, commit: %s", gitCommit)
19+
app.Version = fmt.Sprintf("0.3.0, commit: %s", gitCommit)
2020
} else {
21-
app.Version = "0.2.0"
21+
app.Version = "0.3.0"
2222
}
2323
app.Usage = "OCI (Open Container Initiative) runtime tools"
2424
app.Flags = []cli.Flag{

Diff for: cmd/runtimetest/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -825,7 +825,7 @@ func run(context *cli.Context) error {
825825
func main() {
826826
app := cli.NewApp()
827827
app.Name = "runtimetest"
828-
app.Version = "0.2.0"
828+
app.Version = "0.3.0"
829829
app.Usage = "Compare the environment with an OCI configuration"
830830
app.Description = "runtimetest compares its current environment with an OCI runtime configuration read from config.json in its current working directory. The tests are fairly generic and cover most configurations used by the runtime validation suite, but there are corner cases where a container launched by a valid runtime would not satisfy runtimetest."
831831
app.Flags = []cli.Flag{

0 commit comments

Comments
 (0)