Skip to content

Commit 147f9c1

Browse files
committed
Release v1.1.1
Signed-off-by: Brandon Mitchell <git@bmitch.net>
1 parent fbb4662 commit 147f9c1

8 files changed

+12
-12
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Additional documentation about how this group operates:
2020
## Running an OCI Image
2121

2222
The OCI Image Format partner project is the [OCI Runtime Spec project](https://github.com/opencontainers/runtime-spec).
23-
The Runtime Specification outlines how to run a "[filesystem bundle](https://github.com/opencontainers/runtime-spec/blob/main/bundle.md)" that is unpacked on disk.
23+
The Runtime Specification outlines how to run a "[filesystem bundle](https://github.com/opencontainers/runtime-spec/blob/v1.2.0/bundle.md)" that is unpacked on disk.
2424
At a high-level an OCI implementation would download an OCI Image then unpack that image into an OCI Runtime filesystem bundle.
2525
At this point the OCI Runtime Bundle would be run by an OCI Runtime.
2626

considerations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -138,10 +138,10 @@ The above can be converted into the following regular expression:
138138
```
139139

140140
[canonical-json]: https://wiki.laptop.org/go/Canonical_JSON
141-
[distribution-spec]: https://github.com/opencontainers/distribution-spec/blob/main/spec.md
141+
[distribution-spec]: https://github.com/opencontainers/distribution-spec/blob/v1.1.1/spec.md
142142
[docker-go]: https://github.com/docker/go/
143143
[ebnf]: https://en.wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_form
144144
[Go]: https://golang.org/
145145
[JSON]: https://json.org/
146-
[runtime-spec]: https://github.com/opencontainers/runtime-spec/blob/main/spec.md
146+
[runtime-spec]: https://github.com/opencontainers/runtime-spec/blob/v1.2.0/spec.md
147147
[xmlebnf]: https://www.w3.org/TR/REC-xml/#sec-notation

conversion.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -126,5 +126,5 @@ If there is a conflict (same key but different value) between an implicit annota
126126
A converter MAY add annotations which have keys not specified in the image.
127127
A converter MUST NOT modify the values of annotations specified in the image.
128128

129-
[oci-runtime-bundle]: https://github.com/opencontainers/runtime-spec/blob/main/bundle.md
130-
[oci-runtime-config]: https://github.com/opencontainers/runtime-spec/blob/main/config.md
129+
[oci-runtime-bundle]: https://github.com/opencontainers/runtime-spec/blob/v1.2.0/bundle.md
130+
[oci-runtime-config]: https://github.com/opencontainers/runtime-spec/blob/v1.2.0/config.md

image-index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,6 @@ These values SHOULD match (or be similar to) their analog listed in [the Go Lang
185185
[go-environment2]: https://golang.org/doc/install/source#environment
186186
[iana]: https://www.iana.org/assignments/media-types/media-types.xhtml
187187
[matrix]: media-types.md#compatibility-matrix
188-
[referrers-api]: https://github.com/opencontainers/distribution-spec/blob/main/spec.md#listing-referrers
188+
[referrers-api]: https://github.com/opencontainers/distribution-spec/blob/v1.1.1/spec.md#listing-referrers
189189
[rfc6838]: https://tools.ietf.org/html/rfc6838
190190
[rfc6838-s4.2]: https://tools.ietf.org/html/rfc6838#section-4.2

image-layout.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
- The OCI Image Layout is the directory structure for OCI content-addressable blobs and [location-addressable](https://en.wikipedia.org/wiki/Content-addressable_storage#Content-addressed_vs._location-addressed) references (refs).
44
- This layout MAY be used in a variety of different transport mechanisms: archive formats (e.g. tar, zip), shared filesystem environments (e.g. nfs), or networked file fetching (e.g. http, ftp, rsync).
55

6-
Given an image layout and a ref, a tool can create an [OCI Runtime Specification bundle](https://github.com/opencontainers/runtime-spec/blob/main/bundle.md) by:
6+
Given an image layout and a ref, a tool can create an [OCI Runtime Specification bundle](https://github.com/opencontainers/runtime-spec/blob/v1.2.0/bundle.md) by:
77

88
- Following the ref to find a [manifest](manifest.md#image-manifest), possibly via an [image index](image-index.md)
99
- [Applying the filesystem layers](layer.md#applying) in the specified order
10-
- Converting the [image configuration](config.md) into an [OCI Runtime Specification `config.json`](https://github.com/opencontainers/runtime-spec/blob/main/config.md)
10+
- Converting the [image configuration](config.md) into an [OCI Runtime Specification `config.json`](https://github.com/opencontainers/runtime-spec/blob/v1.2.0/config.md)
1111

1212
## Content
1313

manifest.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,6 @@ _Implementers note:_ artifacts have historically been created without an `artifa
265265

266266
[dag]: https://en.wikipedia.org/wiki/Merkle_tree
267267
[iana]: https://www.iana.org/assignments/media-types/media-types.xhtml
268-
[referrers-api]: https://github.com/opencontainers/distribution-spec/blob/main/spec.md#listing-referrers
268+
[referrers-api]: https://github.com/opencontainers/distribution-spec/blob/v1.1.1/spec.md#listing-referrers
269269
[rfc6838]: https://tools.ietf.org/html/rfc6838
270270
[rfc6838-s4.2]: https://tools.ietf.org/html/rfc6838#section-4.2

spec.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Typically, these manifests may provide different implementations of the image, p
4242

4343
![build diagram](img/build-diagram.png)
4444

45-
Once built the OCI Image can then be discovered by name, downloaded, verified by hash, trusted through a signature, and unpacked into an [OCI Runtime Bundle](https://github.com/opencontainers/runtime-spec/blob/main/bundle.md).
45+
Once built the OCI Image can then be discovered by name, downloaded, verified by hash, trusted through a signature, and unpacked into an [OCI Runtime Bundle](https://github.com/opencontainers/runtime-spec/blob/v1.2.0/bundle.md).
4646

4747
![runtime diagram](img/run-diagram.png)
4848

specs-go/version.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ const (
2222
// VersionMinor is for functionality in a backwards-compatible manner
2323
VersionMinor = 1
2424
// VersionPatch is for backwards-compatible bug fixes
25-
VersionPatch = 0
25+
VersionPatch = 1
2626

2727
// VersionDev indicates development branch. Releases will be empty string.
28-
VersionDev = "+dev"
28+
VersionDev = ""
2929
)
3030

3131
// Version is the specification version that the package types support.

0 commit comments

Comments
 (0)