diff --git a/source/CHANGELOG.md b/source/CHANGELOG.md index ccd7491..5553272 100644 --- a/source/CHANGELOG.md +++ b/source/CHANGELOG.md @@ -1,57 +1,5 @@ -# 0.1.6 (January 8, 2014) +# 0.1 (April 24, 2014) BUG FIXES: - - Downgraded fog to 1.18 in order to be more compatible with vagrant-aws - -# 0.1.5 (January 8, 2014) - -IMPROVEMENTS: - - - Fix Vagrant 1.4 compatibility and support multiple SSH keys [GH-58] - - Add uploaded keypair support [GH-53] - - Add ssh_run support, for vagrant ssh -c [GH-57] - - Requires fog 1.19 [GH-65] - -BUG FIXES: - - - Remove networks warning as vagrant-openstack now supports networks [GH-64] - -# 0.1.4 (October 15, 2013) - -IMPROVEMENTS: - - - Adds endpoint validation (openstack_compute_url, openstack_auth_url) [GH-39] - -FEATURES: - - Adds ability to configure networks [GH-37] - -# 0.1.3 (September 6, 2013) - -IMPROVEMENTS: - - - Adds ability to specify authentication endpoint; Support for UK Cloud! [GH-32] - - Adds ability to specify disk configuration (disk_conf) [GH-33] - -# 0.1.2 (August 22, 2013) - -FEATURES: - -- Add provision support [GH-16] - -IMPROVEMENTS: - - - Adds option to allow provisioning after RackConnect scripts complete. [GH-18] - - Remove Fog deprecation warnings [GH-11] - - Bypass rsync's StrictHostKeyCheck [GH-5] - - Make chown'ing of synced folder perms recursive (for ssh user) [GH-24] - - Use /cygdrive when rsyncing on Windows [GH-17] - - -# 0.1.1 (March 18, 2013) - -* Up fog dependency for Vagrant 1.1.1 - -# 0.1.0 (March 14, 2013) - * Initial release. diff --git a/source/RELEASE.md b/source/RELEASE.md index 7625ac0..6e95fc4 100644 --- a/source/RELEASE.md +++ b/source/RELEASE.md @@ -1,6 +1,6 @@ # Release process -This is vagrant-openstack's current release process, documented so people know what is +This is vagrant-openstack-provider's current release process, documented so people know what is currently done. ## Prepare the release @@ -13,5 +13,3 @@ currently done. The CHANGELOG.md should be maintained in a similar format to Vagrant: https://github.com/mitchellh/vagrant/blob/master/CHANGELOG.md - - diff --git a/source/lib/vagrant-openstack/version.rb b/source/lib/vagrant-openstack/version.rb index 0cf70d2..3ac0540 100644 --- a/source/lib/vagrant-openstack/version.rb +++ b/source/lib/vagrant-openstack/version.rb @@ -1,5 +1,5 @@ module VagrantPlugins module Openstack - VERSION = "0.1.7dev" + VERSION = "0.1" end end diff --git a/source/vagrant-openstack.gemspec b/source/vagrant-openstack.gemspec index 62041b0..328f739 100644 --- a/source/vagrant-openstack.gemspec +++ b/source/vagrant-openstack.gemspec @@ -4,15 +4,13 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'vagrant-openstack/version' Gem::Specification.new do |gem| - gem.name = "vagrant-openstack" + gem.name = "vagrant-openstack-provider" gem.version = VagrantPlugins::Openstack::VERSION - gem.authors = ["Mitchell Hashimoto"] - gem.email = ["mitchell@hashicorp.com"] + gem.authors = ["Guillaume Giamarchi", "Julien Vey"] + gem.email = ["guillaume.giamarchi@gmail.com", "vey.julien@gmail.com"] gem.description = "Enables Vagrant to manage machines in Openstack Cloud." gem.summary = "Enables Vagrant to manage machines in Openstack Cloud." - gem.homepage = "http://www.vagrantup.com" - - gem.add_runtime_dependency "fog", "~> 1.18" + gem.homepage = "https://github.com/ggiamarchi/vagrant-openstack" gem.add_development_dependency "rake" gem.add_development_dependency "rspec", "~> 2.13.0"