From e7dc5e79f2c7e0c6bf8df56985481f28879956be Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 6 Dec 2021 20:59:17 -0500 Subject: [PATCH] proxy: Also bump compatible semver To denote we have new API. --- cmd/skopeo/proxy.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/skopeo/proxy.go b/cmd/skopeo/proxy.go index e65e47b3..883b1d20 100644 --- a/cmd/skopeo/proxy.go +++ b/cmd/skopeo/proxy.go @@ -87,7 +87,8 @@ import ( // // 0.2.1: Initial version // 0.2.2: Added support for fetching image configuration as OCI -const protocolVersion = "0.2.2" +// 0.2.3: Added GetFullConfig +const protocolVersion = "0.2.3" // maxMsgSize is the current limit on a packet size. // Note that all non-metadata (i.e. payload data) is sent over a pipe.