From 18bb4ffb44f98107f4a643e8c3023a71bc76f154 Mon Sep 17 00:00:00 2001 From: Megan Marsh Date: Mon, 16 Dec 2019 11:46:46 -0800 Subject: [PATCH] bump API version since this change makes things backwards incompatible. --- packer/plugin/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packer/plugin/server.go b/packer/plugin/server.go index 0efefb7e5..b230a1413 100644 --- a/packer/plugin/server.go +++ b/packer/plugin/server.go @@ -36,7 +36,7 @@ const MagicCookieValue = "d602bf8f470bc67ca7faa0386276bbdd4330efaf76d1a219cb4d69 // The APIVersion is outputted along with the RPC address. The plugin // client validates this API version and will show an error if it doesn't // know how to speak it. -const APIVersion = "4" +const APIVersion = "5" // Server waits for a connection to this plugin and returns a Packer // RPC server that you can use to register components and serve them.