Skip to content

Commit

Permalink
Fixes #126, changes for release of version 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
seth-reeser committed Dec 17, 2019
1 parent c96f539 commit 8f2490f
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ source 'https://rubygems.org'
group :development do
gem 'vagrant',
:git => 'git://github.com/mitchellh/vagrant.git',
:ref => 'v1.8.4'
:ref => 'v1.9.8'

# test dependencies
gem 'minitest'
Expand Down
31 changes: 27 additions & 4 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -398,17 +398,22 @@ option to `false`:

== Development

The use of https://rvm.io[RVM] is recommended. Verified to work with
ruby 2.0.0p648.

....
rvm install 2.0
rvm use 2.0
....

To install a development environment, clone the repo and prepare
dependencies by:

....
gem install bundler
bundler install
bundle install
....

The use of https://rvm.io[RVM] is recommended. Verified to work with
ruby 2.0.0p643.

=== Tests

==== Minitest
Expand Down Expand Up @@ -460,6 +465,24 @@ __build/features_report.html__. They can also be opened via:
$ bundle exec rake features:open_report
....

== Releasing

To release a new version of vagrant-registration you will need to do the following:

*(only contributors of the GitHub repo and owners of the project at RubyGems will have rights to do this)*

1. First, bump, commit, and push the version in ~/lib/vagrant-registration/version.rb:
* Follow [Semantic Versioning](http://semver.org/).
2. Then, create a matching GitHub Release (this will also create a tag):
* Preface the version number with a `v`.
* https://github.com/projectatomic/adb-vagrant-registration/releases
3. You will then need to build and push the new gem to RubyGems:
* `rake build`
* `gem push pkg/vagrant-registration-1.3.2.gem`
4. Then, when John Doe runs the following, they will receive the updated vagrant-registration plugin:
* `vagrant plugin update`
* `vagrant plugin update vagrant-registration`

== Acknowledgements

The project would like to make sure we thank
Expand Down
2 changes: 1 addition & 1 deletion lib/vagrant-registration/version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module VagrantPlugins
# Registration plugin to auto-register guests on `vagrant up`
module Registration
VERSION = '1.3.2.dev'
VERSION = '1.3.2'
end
end

0 comments on commit 8f2490f

Please sign in to comment.