Skip to content

Commit

Permalink
clarify how to bump version in rake
Browse files Browse the repository at this point in the history
  • Loading branch information
arlimus committed Jan 5, 2016
1 parent 7bba1af commit e7e7917
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ end
desc 'Bump the version of this gem'
task :bump_version, [:version] do |_, args|
v = args[:version] || ENV['to']
fail "You must specify a target version! rake release[1.2.3]" if v.empty?
fail "You must specify a target version! rake bump_version to=1.2.3" if v.empty?
check_update_requirements
inspec_version(v)
Rake::Task['changelog'].invoke
Expand Down

0 comments on commit e7e7917

Please sign in to comment.