From b7c604795ed6b07c4391d128d131d3569214343b Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Tue, 2 Sep 2014 14:28:21 -0700 Subject: [PATCH] packer/plugin: increase version for Yamux --- 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 a36f8beda..83292c320 100644 --- a/packer/plugin/server.go +++ b/packer/plugin/server.go @@ -33,7 +33,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 = "3" +const APIVersion = "4" // Server waits for a connection to this plugin and returns a Packer // RPC server that you can use to register components and serve them.