From 4a1d68c76657075058c51eb32458d861c51b7d32 Mon Sep 17 00:00:00 2001 From: David Justice Date: Tue, 28 Feb 2017 10:06:15 -0800 Subject: [PATCH] fix version reference for real (#173) --- README.md | 2 +- lib/vagrant-azure/services/azure_resource_manager.rb | 1 + lib/vagrant-azure/version.rb | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ca2c42d..ffea93b 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ provider to Vagrant, allowing Vagrant to control and provision machines in Micro Install the vagrant-azure plugin using the standard Vagrant 1.1+ installation methods. After installing the plugin, you can ```vagrant up``` and use ```azure``` provider. For example: ```sh -& vagrant plugin install vagrant-azure --plugin-version '2.0.0.pre5' +& vagrant plugin install vagrant-azure --plugin-version '2.0.0.pre6' ... $ vagrant up --provider=azure ... diff --git a/lib/vagrant-azure/services/azure_resource_manager.rb b/lib/vagrant-azure/services/azure_resource_manager.rb index 07769b2..b3ad703 100644 --- a/lib/vagrant-azure/services/azure_resource_manager.rb +++ b/lib/vagrant-azure/services/azure_resource_manager.rb @@ -6,6 +6,7 @@ require 'azure_mgmt_compute' require 'azure_mgmt_network' require 'azure_mgmt_storage' +require 'vagrant-azure/version' module VagrantPlugins module Azure diff --git a/lib/vagrant-azure/version.rb b/lib/vagrant-azure/version.rb index 2576800..7d3e329 100644 --- a/lib/vagrant-azure/version.rb +++ b/lib/vagrant-azure/version.rb @@ -4,6 +4,6 @@ module VagrantPlugins module Azure - VERSION = '2.0.0.pre5'.freeze + VERSION = '2.0.0.pre6'.freeze end end