Skip to content

Commit 8f2490f

Browse files
committed
Fixes #126, changes for release of version 1.3.2
1 parent c96f539 commit 8f2490f

File tree

3 files changed

+29
-6
lines changed

3 files changed

+29
-6
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ source 'https://rubygems.org'
33
group :development do
44
gem 'vagrant',
55
:git => 'git://github.com/mitchellh/vagrant.git',
6-
:ref => 'v1.8.4'
6+
:ref => 'v1.9.8'
77

88
# test dependencies
99
gem 'minitest'

README.adoc

Lines changed: 27 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -398,17 +398,22 @@ option to `false`:
398398

399399
== Development
400400

401+
The use of https://rvm.io[RVM] is recommended. Verified to work with
402+
ruby 2.0.0p648.
403+
404+
....
405+
rvm install 2.0
406+
rvm use 2.0
407+
....
408+
401409
To install a development environment, clone the repo and prepare
402410
dependencies by:
403411

404412
....
405413
gem install bundler
406-
bundler install
414+
bundle install
407415
....
408416

409-
The use of https://rvm.io[RVM] is recommended. Verified to work with
410-
ruby 2.0.0p643.
411-
412417
=== Tests
413418

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

468+
== Releasing
469+
470+
To release a new version of vagrant-registration you will need to do the following:
471+
472+
*(only contributors of the GitHub repo and owners of the project at RubyGems will have rights to do this)*
473+
474+
1. First, bump, commit, and push the version in ~/lib/vagrant-registration/version.rb:
475+
* Follow [Semantic Versioning](http://semver.org/).
476+
2. Then, create a matching GitHub Release (this will also create a tag):
477+
* Preface the version number with a `v`.
478+
* https://github.com/projectatomic/adb-vagrant-registration/releases
479+
3. You will then need to build and push the new gem to RubyGems:
480+
* `rake build`
481+
* `gem push pkg/vagrant-registration-1.3.2.gem`
482+
4. Then, when John Doe runs the following, they will receive the updated vagrant-registration plugin:
483+
* `vagrant plugin update`
484+
* `vagrant plugin update vagrant-registration`
485+
463486
== Acknowledgements
464487

465488
The project would like to make sure we thank

lib/vagrant-registration/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module VagrantPlugins
22
# Registration plugin to auto-register guests on `vagrant up`
33
module Registration
4-
VERSION = '1.3.2.dev'
4+
VERSION = '1.3.2'
55
end
66
end

0 commit comments

Comments
 (0)