From 5c8e7ed0dee117c9d423849f09f82d15957893a8 Mon Sep 17 00:00:00 2001 From: baude Date: Mon, 21 Jan 2019 15:18:13 -0600 Subject: enable podman-remote version initial enablement of podman-remote version. includes add a APIVersion const that will allow us to check compatibility between host/client when connections are made. also added client related information to podman info. Signed-off-by: baude --- version/version.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'version') diff --git a/version/version.go b/version/version.go index ea5a92286..24daf707c 100644 --- a/version/version.go +++ b/version/version.go @@ -5,3 +5,8 @@ package version // of the top-level README.md file when this is // bumped. const Version = "1.0.1-dev" + +// RemoteAPIVersion is the version for the remote +// client API. It is used to determine compatibility +// between a remote podman client and its backend +const RemoteAPIVersion = 1 -- cgit v1.2.3-54-g00ecf