Skip to content

Commit

Permalink
Bundler 2.2.16
Browse files Browse the repository at this point in the history
  • Loading branch information
schneems committed Apr 14, 2021
1 parent 9394f3f commit b2845c6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Main (unreleased)

## v226 (4/14/2021)

* Bundler 2.x is now 2.2.16 ()

## v226 (4/13/2021)

* Bundler 2.x is now 2.2.15 (https://github.com/heroku/heroku-buildpack-ruby/pull/1144)
Expand Down
3 changes: 3 additions & 0 deletions changelogs/v227/bundler_2216.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Ruby apps with Bundler 2.x now receive version 2.2.16

The [Ruby Buildpack](https://devcenter.heroku.com/articles/ruby-support#libraries) now includes Bundler 2.2.16. Applications specifying Bundler 2.x in their `Gemfile.lock` will now receive this version of bundler.
2 changes: 1 addition & 1 deletion lib/language_pack/helpers/bundler_wrapper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class LanguagePack::Helpers::BundlerWrapper

BLESSED_BUNDLER_VERSIONS = {}
BLESSED_BUNDLER_VERSIONS["1"] = "1.17.3"
BLESSED_BUNDLER_VERSIONS["2"] = "2.2.15"
BLESSED_BUNDLER_VERSIONS["2"] = "2.2.16"
BUNDLED_WITH_REGEX = /^BUNDLED WITH$(\r?\n) (?<major>\d+)\.\d+\.\d+/m

class GemfileParseError < BuildpackError
Expand Down
2 changes: 1 addition & 1 deletion lib/language_pack/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module LanguagePack
class LanguagePack::Base
BUILDPACK_VERSION = "v226"
BUILDPACK_VERSION = "v227"
end
end

0 comments on commit b2845c6

Please sign in to comment.