diff options
author | Colby Swandale <me@colby.fyi> | 2018-10-05 10:53:19 +1000 |
---|---|---|
committer | Colby Swandale <me@colby.fyi> | 2018-10-05 15:08:58 +1000 |
commit | f66c3346733afeeff3ac4b09f522fe40bc8dbb44 (patch) | |
tree | de04378504463aa2505de599fdaa7c9327625713 | |
parent | 3ab7d9c6d03e0cb05ae0dea40848af092771167a (diff) | |
download | bundler-f66c3346733afeeff3ac4b09f522fe40bc8dbb44.tar.gz |
Version 1.16.6 with changelogv1.16.6
-rw-r--r-- | CHANGELOG.md | 22 | ||||
-rw-r--r-- | lib/bundler/version.rb | 2 |
2 files changed, 23 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 59e49aa853..8e4cd2f5ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,25 @@ +## 1.16.6 (2018-10-05) + +Changes: + + - Add an error message when adding a gem with `bundle add` that's already in the bundle ([#6341](https://github.com/bundler/bundler/issues/6341), @agrim123) + - Add Homepage, Source Code and Chanagelog URI metadata fields to the `bundle gem` gemspec template (@walf443) + +Bugfixes: + + - Fix issue where updating a gem resulted in the gem's version being downgraded when `BUNDLE_ONLY_UPDATE_TO_NEWER_VERSIONS` was set ([#6529](https://github.com/bundler/bundler/issues/6529), @theflow) + - Fix some rescue calls that don't specifiy error type (@utilum) + - Fix an issue when the Lockfile would contain platform-specific gems that it didn't need ([#6491](https://github.com/bundler/bundler/issues/6491), @segiddins) + - Improve handlding of adding new gems with only a single group to the Gemfile in `bundle add` (@agrim123) + - Refactor check for OpenSSL in `bundle env` (@voxik) + - Remove an unnecessary assignment in Metadata (@voxik) + +Documentation: + + - Update docs to reflect revised guidance to check in Gemfile.lock into version control for gems ([#5879](https://github.com/bundler/bundler/issues/5879), @arbonap) + - Add documentation for the `--all` flag in `bundle update` (@agrim123) + - Update README to use `bundle add` in usage examples (@hdf1986) + ## 1.16.5 (2018-09-18) Changes: diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb index 837de2a75b..d290dd3a6f 100644 --- a/lib/bundler/version.rb +++ b/lib/bundler/version.rb @@ -7,7 +7,7 @@ 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.16.5" unless defined?(::Bundler::VERSION) + VERSION = "1.16.6" unless defined?(::Bundler::VERSION) def self.overwrite_loaded_gem_version begin |