From b878f3dd1f238ebe68d0116566045a71b141a86b Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Thu, 2 Nov 2017 13:03:50 +0100 Subject: [PATCH] Fix API version Commit 3ba1dda1914fa7d380d9d3220c3b158a41f90cba bumped the API version, but forgot to actually bump the version in code. This patch fixes the version to match those changes :-) Signed-off-by: Sebastiaan van Stijn Upstream-commit: 7f8dbe4a86650b02ffb490098b9f3bf0912c575d Component: engine --- components/engine/api/common.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/engine/api/common.go b/components/engine/api/common.go index d0229e0389..af34d0b354 100644 --- a/components/engine/api/common.go +++ b/components/engine/api/common.go @@ -3,7 +3,7 @@ package api // Common constants for daemon and client. const ( // DefaultVersion of Current REST API - DefaultVersion string = "1.34" + DefaultVersion string = "1.35" // NoBaseImageSpecifier is the symbol used by the FROM // command to specify that no base image is to be used.