diff --git a/CHANGELOG.md b/CHANGELOG.md index 32b3a55..4523e6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ -## 0.4.1 (UNRELEASED) +## 0.4.1 (March 5, 2015) BUG FIXES: - Fix syntax errors in spec and pin rpsec versioning + - Fix incorrect filter on VLANs contrib tool causing it to not list all available VLANs + - Pin softlayer_api version to >= 3.0.1 to fix bug in wait_until_ready ## 0.4.0 (October 1, 2014) ENHANCEMENTS: diff --git a/lib/vagrant-softlayer/version.rb b/lib/vagrant-softlayer/version.rb index e38d24e..de219ef 100644 --- a/lib/vagrant-softlayer/version.rb +++ b/lib/vagrant-softlayer/version.rb @@ -1,5 +1,5 @@ module VagrantPlugins module SoftLayer - VERSION = "0.4.1.dev" + VERSION = "0.4.1" end end diff --git a/vagrant-softlayer.gemspec b/vagrant-softlayer.gemspec index 21d6c04..21ae930 100644 --- a/vagrant-softlayer.gemspec +++ b/vagrant-softlayer.gemspec @@ -47,7 +47,7 @@ Gem::Specification.new do |spec| spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_path = "lib" - spec.add_dependency "softlayer_api", "~> 3.0" + spec.add_dependency "softlayer_api", "~> 3.0", ">= 3.0.1" spec.add_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "rake"