Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.0.1 #919

Merged
merged 3 commits into from
Nov 8, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
33 changes: 33 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
OpenContainers Specifications

Changes with v1.0.1:

Minor fixes and documentation:

* spec: Expand "OCI" in spec-title reference and add "Initiative"
(#900)
* config: Simplify title to "Configuration" (#901)
* config: Fix "procfs_2" -> "proc_2" link label (#906)
* config: Fix IEEE Std 1003.1-2008 exec link markup (#913)
* config: Add a trailing period to the "cannot be mapped" rlimits
line (#915)
* config-linux: RFC 2119 MUST for absolute linux.namespaces[].path
(#925). This is technically a breaking change, because a config
with a relative namespace path would have been compliant before,
but will be non compliant with this change. However, the previous
"an absolute path to namespace file" wording was clear enough that
config authors are unlikely to be relying on relative namespace
paths in configs.
* config-linux: More specific documentation for weightDevice and
throttle* (#825)
* config-linux: Modify procfs to proc (#905)
* config-linux: Fix "psuedo" -> "pseudo" typo (#921)
* config-windows: Make maximum a uint16 (was a uint) (#891)
* runtime: Change "process in the container" -> "container
process" (#907)
* schema/config-schema: Use ArrayOfStrings in capabilities
properties. (#886)
* schema/config-linux:
s/throttleWriteIopsDevice/throttleWriteIOPSDevice/ (#899)
* schema/config-linux: add intelRdt field (#889)
* schema/config-solaris: Replaced refs with some fields
(cappedCPU.ncpus, etc.) (#892)

Changes with v1.0.0:

Breaking changes:
Expand Down
2 changes: 1 addition & 1 deletion specs-go/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const (
// VersionMinor is for functionality in a backwards-compatible manner
VersionMinor = 0
// VersionPatch is for backwards-compatible bug fixes
VersionPatch = 0
VersionPatch = 1

// VersionDev indicates development branch. Releases will be empty string.
VersionDev = "-dev"
Expand Down