From 7e3418da483aaffc91bdf27ba7bba321813c1a13 Mon Sep 17 00:00:00 2001 From: Seth Reeser Date: Thu, 7 Sep 2023 08:54:14 -0400 Subject: [PATCH] Releasing v0.9.6 --- Gemfile | 3 +-- README.md | 14 ++++---------- lib/vagrant-digitalocean/version.rb | 2 +- 3 files changed, 6 insertions(+), 13 deletions(-) diff --git a/Gemfile b/Gemfile index c35d2c6..0565243 100644 --- a/Gemfile +++ b/Gemfile @@ -1,11 +1,10 @@ source 'https://rubygems.org' -gem 'vagrant', :git => 'git://github.com/mitchellh/vagrant.git', :tag => 'v1.7.2' +gem 'vagrant', :git => 'https://github.com/hashicorp/vagrant.git', :tag => 'v2.3.7' gem 'rake' group :plugins do gem 'vagrant-omnibus' - gem 'vagrant-digitalocean', :path => '.' end gemspec diff --git a/README.md b/README.md index a64a559..1eec72b 100644 --- a/README.md +++ b/README.md @@ -162,16 +162,10 @@ To contribute, fork then clone the repository, and then the following: **Developing** -1. Install [Bundler](http://bundler.io/) -2. Currently the Bundler version is locked to 1.7.9, please install this version. - * `sudo gem install bundler -v '1.7.9'` -3. Then install vagrant-digitalocean dependencies: - * `bundle _1.7.9_ install` -4. Do your development and run a few commands, one to get started would be: - * `bundle _1.7.9_ exec vagrant digitalocean-list images` -5. You can then run a test: - * `bundle _1.7.9_ exec rake test` -6. Once you are satisfied with your changes, please submit a pull request. +1. Install [RVM](https://rvm.io/rvm/install) +2. If using MacOS, follow these [OpenSSL instructions](https://github.com/rvm/rvm/issues/5252#issuecomment-1298835941) +3. Use Ruby v3.0.0 `rvm use 3.0.0` +4. Run `bundle install` **Testing** diff --git a/lib/vagrant-digitalocean/version.rb b/lib/vagrant-digitalocean/version.rb index 25777b0..b82f466 100644 --- a/lib/vagrant-digitalocean/version.rb +++ b/lib/vagrant-digitalocean/version.rb @@ -1,5 +1,5 @@ module VagrantPlugins module DigitalOcean - VERSION = '0.9.5' + VERSION = '0.9.6' end end