diff --git a/README.md b/README.md index 51418cd..ca2c42d 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.pre4' +& vagrant plugin install vagrant-azure --plugin-version '2.0.0.pre5' ... $ 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 2338562..07769b2 100644 --- a/lib/vagrant-azure/services/azure_resource_manager.rb +++ b/lib/vagrant-azure/services/azure_resource_manager.rb @@ -12,7 +12,7 @@ module Azure module Services class AzureResourceManager - TELEMETRY = "vagrant-azure/#{VagrantPlugins::Azure::VERSION}" + TELEMETRY = "vagrant-azure/#{::VagrantPlugins::Azure::VERSION}" TENANT_ID_NAME = 'AZURE_TENANT_ID' CLIENT_ID_NAME = 'AZURE_CLIENT_ID' CLIENT_SECRET_NAME = 'AZURE_CLIENT_SECRET' diff --git a/lib/vagrant-azure/version.rb b/lib/vagrant-azure/version.rb index 27840fd..2576800 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.pre4'.freeze + VERSION = '2.0.0.pre5'.freeze end end