Skip to content

Commit

Permalink
Merge pull request #503 from liangchenye/release
Browse files Browse the repository at this point in the history
release v0.3.0
  • Loading branch information
liangchenye authored Nov 1, 2017
2 parents 20af327 + e08f842 commit afb01db
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 3 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
# v0.3.0

## Additions

* cmd/runtimetest: Adopt `DevicesAvailable` RFC code (#502).
* cmd/runtimetest: Adopt `DefaultRuntimeLinuxSymlinks`, `DefaultDevices`,
`LinuxProcOomScoreAdjSet`, `MountsInOrder`, `SpecVersionInSemVer`,
`PosixHooksPathAbs`, `ProcCwdAbs`, `ProcArgsOneEntryRequired`,
`PosixProcRlimitsErrorOnDup`, `MountsDestAbs`, `MountsDestOnWindowsNotNested`,
`PlatformSpecConfOnWindowsSet`, `MaskedPathsAbs`, `ReadonlyPathsAbs`
RFC codes (#500).
* specerror: Turn all the RFC 2119 key words described in runtime-spec
to RFC codes (#498, #497, #481, #458).
* specerror: Add SplitLevel helper, Implement `--compliance-level` (#492).
* generate: generate smoke test (#491).
* travis: Add go 1.9 version (#487).
* rootfs-{arch}.tar.gz: Add per-arch tarballs (#479).
* generate: Add `--linux-device-cgroup-add` and
`--linux-device-cgroup-remove` (#446).
* filepath: Add a stand-alone package for explicit-OS path logic (#445).

## Minor fixes and documentation

* cmd/runtimetest: Fix nil reference (#494).
* man: Fix typo (#493).
* generate: Correct rootfs default, allow unset "type" fields
in resource devices whitelist (#491).
* validate: Fix compile issue (#490).
* bash: Fix command (#489).
* validate: Fix cap valiadtion (#488).
* generate: Fix rootfs-propagation (#484).

# v0.2.0

## Additions
Expand Down
4 changes: 2 additions & 2 deletions cmd/oci-runtime-tool/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ func main() {
app := cli.NewApp()
app.Name = "oci-runtime-tool"
if gitCommit != "" {
app.Version = fmt.Sprintf("0.2.0, commit: %s", gitCommit)
app.Version = fmt.Sprintf("0.3.0, commit: %s", gitCommit)
} else {
app.Version = "0.2.0"
app.Version = "0.3.0"
}
app.Usage = "OCI (Open Container Initiative) runtime tools"
app.Flags = []cli.Flag{
Expand Down
2 changes: 1 addition & 1 deletion cmd/runtimetest/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -825,7 +825,7 @@ func run(context *cli.Context) error {
func main() {
app := cli.NewApp()
app.Name = "runtimetest"
app.Version = "0.2.0"
app.Version = "0.3.0"
app.Usage = "Compare the environment with an OCI configuration"
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."
app.Flags = []cli.Flag{
Expand Down

0 comments on commit afb01db

Please sign in to comment.