summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColby Swandale <me@colby.fyi>2018-04-20 10:46:19 +1000
committerColby Swandale <hello@colby.fyi>2018-05-17 00:36:30 +1000
commit9f7bf0ac3ab8d995e3a274cec3c292a5203f4534 (patch)
tree74a9446af69060aa0a641ba1b75604907c8c088f
parenteaa3347b52bd8583f09c4af3f480278d58a10cb2 (diff)
downloadbundler-9f7bf0ac3ab8d995e3a274cec3c292a5203f4534.tar.gz
Version 1.16.2 with changelogv1.16.2
-rw-r--r--CHANGELOG.md50
-rw-r--r--lib/bundler/version.rb2
2 files changed, 51 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3aff6a5532..8160d17723 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,53 @@
+## 1.16.2 (2018-04-20)
+
+Changes:
+
+ - Include the gem's source in the gem install error message when available (@papanikge)
+ - Remove unnecessary executable bit from gem template (@voxik)
+ - Dont add the timestamp comment with gems added to the Gemfile via `bundle add` ([#6193](https://github.com/bundler/bundler/issues/6193), @cpgo)
+ - Improve yanked gem error message (@alyssais)
+ - Use `Bundler.rubygems.inflate` instead of the Gem::Util method directly (@segiddins)
+ - Remove unused instance variable (@segiddins)
+
+Bugfixes:
+
+ - Only trap INT signal and have Ruby's signal default handler be invoked (@shayonj)
+ - Fix warning about the use of `__FILE__` in RubyGems integration testing (@MSP-Greg)
+ - Skip the outdated bundler check when MD5 is not available ([#6032](https://github.com/bundler/bundler/issues/6032), @segiddins)
+ - Fallback to the original error if the friendly message raises (@segiddins)
+ - Rename Bundler.frozen? to avoid Object method conflict ([#6252](https://github.com/bundler/bundler/issues/6252), @segiddins)
+ - Ensure the bindir exists before installing gems (@segiddins)
+ - Handle gzip corruption errors in the compact index client ([#6261](https://github.com/bundler/bundler/issues/6261), @colby-swandale)
+ - Check if the current directory is writeable when writing files in `bundle gem` ([#6219](https://github.com/bundler/bundler/issues/6219), @nilsding)
+ - Fix hang when gemspec has incompatible encoding (@deivid-rodriguez)
+ - Gracefully handle when the lockfile is missing spec entries for the current platform ([#6079](https://github.com/bundler/bundler/issues/6079), @segiddins)
+ - Use Gem::Util.inflate instead of Gem.inflate (@hsbt)
+ - Update binstub generator to use new ERB.new arity in Ruby 2.6 (@koic)
+ - Fix `source_location` call in rubygems integration (@MSP-Greg)
+ - Use `filesystem_access` when copying files in Compact Index Updater ([#6289](https://github.com/bundler/bundler/issues/6289), @segiddins)
+ - Fail gracefully when resetting git gems to the given revision fails ([#6324](https://github.com/bundler/bundler/issues/6324), @segiddins)
+ - Handle exceptions that do not have a backtrace ([#6342](https://github.com/bundler/bundler/issues/6342), @nesaulov)
+ - Check if stderr was closed before writing to it (@shime)
+ - Handle updating a specific gem for a non-local platform ([#6350](https://github.com/bundler/bundler/issues/6350), @greysteil)
+ - Bump the `bundle_binstub` check-length to 300 characters (@tduffield)
+ - Fix specifying alterntive Lockfile with `bundle lock` when default gemfile is present ([#6460](https://github.com/bundler/bundler/issues/6460), @agrim123)
+ - Allow installing dependencies when the path is set to `.` ([#6475](https://github.com/bundler/bundler/issues/6475), @segiddins)
+ - Support Bundler installing on a readonly filesystem without a home directory ([#6461](https://github.com/bundler/bundler/issues/6461), @grosser)
+ - Filter git uri credentials in source description (@segiddins)
+
+Documentation:
+
+ - Correct typos in `bundle binstubs` man page (@erikj, @samueloph)
+ - Update links in `bundle gem` command documentation to use https (@KrauseFx)
+ - Fix broken links between bundler man pages (@segiddins)
+ - Add man page for the `bundle doctor` command ([#6243](https://github.com/bundler/bundler/issues/6243), @nholden)
+ - Document `# frozen_string_literal` in `bundle init` Gemfile (@315tky)
+ - Explain the gemspec files attribute in `bundle gem` template and print a link to bundler.io guides when running `bundle gem` ([#6246](https://github.com/bundler/bundler/issues/6246), @nesaulov)
+ - Small copy tweaks & removed redundant phrasing in the bundler man page (@rubymorillo)
+ - Improve the documentation of the settings load order in Bundler (@rubymorillo)
+ - Added license info to main README (@rubymorillo)
+ - Document parameters and return value of Injector#inject (@tobias-grasse)
+
## 1.16.1 (2017-12-12)
Bugfixes:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 87b648681a..1ca2feb3b3 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.1" unless defined?(::Bundler::VERSION)
+ VERSION = "1.16.2" unless defined?(::Bundler::VERSION)
def self.overwrite_loaded_gem_version
begin