Skip to content

Commit

Permalink
version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
displague committed Dec 26, 2017
1 parent 972be68 commit 1781a9b
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 2 deletions.
2 changes: 2 additions & 0 deletions 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
Expand Down
2 changes: 1 addition & 1 deletion 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
Expand Down
12 changes: 12 additions & 0 deletions README.md
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion lib/vagrant-linode/version.rb
@@ -1,5 +1,5 @@
module VagrantPlugins
module Linode
VERSION = '0.3.0'
VERSION = '0.4.0'
end
end

0 comments on commit 1781a9b

Please sign in to comment.