diff --git a/CHANGELOG.md b/CHANGELOG.md index a2f2196..13c3c64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ Changelog ========= +v0.4.0 added support for Linode Volumes + added `vagrant linode volumes list` command v0.3.0 fixes for Vagrant 2.0.1 (now requires Ruby 2.2.0+) xen-only kernels are no longer available (Fixes KVM Grub options) rebuild command warns / quits if Linode is not powered down diff --git a/Gemfile b/Gemfile index 18724dc..6be8dbc 100644 --- a/Gemfile +++ b/Gemfile @@ -1,5 +1,5 @@ source 'https://rubygems.org' -ruby '~> 2.2.0' +ruby '>= 2.2.0' group :development do # We depend on Vagrant for development, but we don't add it as a diff --git a/README.md b/README.md index 78e1ef2..c18bf0a 100644 --- a/README.md +++ b/README.md @@ -251,6 +251,18 @@ You can now make modifications. Running `vagrant` within the Bundler environment will ensure that plugins installed in your Vagrant environment are not loaded. +### Building and Publishing + +``` +vi lib/vagrant-linode/version.rb +vi CHANGELOG.md +git commit -m 'version 0.1.2' lib/vagrant-linode/version.rb CHANGELOG.md +git tag -s v0.1.2 +git push --tags origin master +gem build vagrant-linode.gemspec +gem push vagrant-linode-0.1.2.gem +``` + [![Join the chat at https://gitter.im/displague/vagrant-linode](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/displague/vagrant-linode?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Code Climate](https://codeclimate.com/github/displague/vagrant-linode/badges/gpa.svg)](https://codeclimate.com/github/displague/vagrant-linode) [![Test Coverage](https://codeclimate.com/github/displague/vagrant-linode/badges/coverage.svg)](https://codeclimate.com/github/displague/vagrant-linode) diff --git a/lib/vagrant-linode/version.rb b/lib/vagrant-linode/version.rb index 01dcf1a..4f9d53d 100644 --- a/lib/vagrant-linode/version.rb +++ b/lib/vagrant-linode/version.rb @@ -1,5 +1,5 @@ module VagrantPlugins module Linode - VERSION = '0.3.0' + VERSION = '0.4.0' end end