diff options
author | Homu <homu@barosl.com> | 2016-04-29 08:13:13 +0900 |
---|---|---|
committer | Homu <homu@barosl.com> | 2016-04-29 08:13:13 +0900 |
commit | 10ddd8aa530f940292a4f6a93a3fd2d60f5cdc3c (patch) | |
tree | 98c20ec2c2f13799071f1ccd6d1b3e318f2f0a8e | |
parent | d40efa845428cabfcdfcea7e4a14ed8ffb3e7639 (diff) | |
parent | aded13b3df2cca34f49b8212b4789131193d1d06 (diff) | |
download | bundler-10ddd8aa530f940292a4f6a93a3fd2d60f5cdc3c.tar.gz |
Auto merge of #4476 - bundler:document-update-ruby, r=segiddinsv1.12.0
Add documentation for update --ruby
None
-rw-r--r-- | CHANGELOG.md | 4 | ||||
-rw-r--r-- | lib/bundler/version.rb | 2 | ||||
-rw-r--r-- | man/bundle-update.ronn | 5 |
3 files changed, 9 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 2de97e77c5..9bc64b2fad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.12.0 (2016-04-28) + +This space intentionally left blank. + ## 1.12.0.rc.4 (2016-04-21) Bugfixes: diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb index 7160a0fb2d..f7103879ac 100644 --- a/lib/bundler/version.rb +++ b/lib/bundler/version.rb @@ -7,5 +7,5 @@ module Bundler # We're doing this because we might write tests that deal # with other versions of bundler and we are unsure how to # handle this better. - VERSION = "1.12.0.rc.4" unless defined?(::Bundler::VERSION) + VERSION = "1.12.0" unless defined?(::Bundler::VERSION) end diff --git a/man/bundle-update.ronn b/man/bundle-update.ronn index b9900e3b50..e111ae786a 100644 --- a/man/bundle-update.ronn +++ b/man/bundle-update.ronn @@ -3,7 +3,7 @@ bundle-update(1) -- Update your gems to the latest available versions ## SYNOPSIS -`bundle update` <*gems> [--group=NAME] [--source=NAME] [--local] +`bundle update` <*gems> [--group=NAME] [--source=NAME] [--local] [--ruby] ## DESCRIPTION @@ -31,6 +31,9 @@ gem. * `--local`: Do not attempt to fetch gems remotely and use the gem cache instead. +* `--ruby`: + Update the locked version of Ruby to the current version of Ruby. + ## UPDATING ALL GEMS If you run `bundle update` with no parameters, bundler will ignore |