Skip to content

Commit

Permalink
Bump default Ruby version to 2.5.7
Browse files Browse the repository at this point in the history
  • Loading branch information
schneems committed Oct 1, 2019
1 parent f8b3d73 commit 2d95fb0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## v206 (unreleased)

* Default Ruby version for new apps is now 2.5.7 (https://github.com/heroku/heroku-buildpack-ruby/pull/926)

## v205 (9/24/2019)

* Update bundler 1.x to 1.17.3 (https://github.com/heroku/heroku-buildpack-ruby/pull/845)
Expand Down
8 changes: 4 additions & 4 deletions buildpack.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[buildpack]
name = "Ruby"
ruby_version = "2.5.6"
ruby_version = "2.5.7"

[publish.Ignore]
files = [
Expand All @@ -13,11 +13,11 @@ ruby_version = "2.5.6"
dir = "."
files = ["./.env"]
[[publish.Vendor]]
url = "https://s3-external-1.amazonaws.com/heroku-buildpack-ruby/cedar-14/ruby-2.5.6.tgz"
url = "https://s3-external-1.amazonaws.com/heroku-buildpack-ruby/cedar-14/ruby-2.5.7.tgz"
dir = "vendor/ruby/cedar-14"
[[publish.Vendor]]
url = "https://s3-external-1.amazonaws.com/heroku-buildpack-ruby/heroku-16/ruby-2.5.6.tgz"
url = "https://s3-external-1.amazonaws.com/heroku-buildpack-ruby/heroku-16/ruby-2.5.7.tgz"
dir = "vendor/ruby/heroku-16"
[[publish.Vendor]]
url = "https://s3-external-1.amazonaws.com/heroku-buildpack-ruby/heroku-18/ruby-2.5.6.tgz"
url = "https://s3-external-1.amazonaws.com/heroku-buildpack-ruby/heroku-18/ruby-2.5.7.tgz"
dir = "vendor/ruby/heroku-18"
3 changes: 3 additions & 0 deletions changelogs/v206/default_ruby.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Default Ruby version for new apps is now 2.5.7

The [default Ruby version for new Ruby applications is 2.5.7](https://devcenter.heroku.com/articles/ruby-support#default-ruby-version-for-new-apps). You’ll only get the default if the application does not specify a ruby version.
2 changes: 1 addition & 1 deletion lib/language_pack/ruby_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def initialize(output = "")
end
end

DEFAULT_VERSION_NUMBER = "2.5.6"
DEFAULT_VERSION_NUMBER = "2.5.7"
DEFAULT_VERSION = "ruby-#{DEFAULT_VERSION_NUMBER}"
LEGACY_VERSION_NUMBER = "1.9.2"
LEGACY_VERSION = "ruby-#{LEGACY_VERSION_NUMBER}"
Expand Down

0 comments on commit 2d95fb0

Please sign in to comment.