Skip to content

Commit

Permalink
Merge pull request #919 from heroku/schneems/rev-version-25
Browse files Browse the repository at this point in the history
Default Ruby version now 2.5.6
  • Loading branch information
schneems authored Sep 12, 2019
2 parents ee9f2a1 + 0a87403 commit 5c0977f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## Master

* Default Ruby version for new apps is now 2.5.6 (https://github.com/heroku/heroku-buildpack-ruby/pull/919)
* Ensure that old binstubs are removed before new ones are generated (https://github.com/heroku/heroku-buildpack-ruby/pull/914)
* Fix windows Gemfile.lock BUNDLED WITH support (https://github.com/heroku/heroku-buildpack-ruby/pull/898)

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.5"
ruby_version = "2.5.6"

[publish.Ignore]
files = [
Expand All @@ -13,11 +13,11 @@ ruby_version = "2.5.5"
dir = "."
files = ["./.env"]
[[publish.Vendor]]
url = "https://s3-external-1.amazonaws.com/heroku-buildpack-ruby/cedar-14/ruby-2.5.5.tgz"
url = "https://s3-external-1.amazonaws.com/heroku-buildpack-ruby/cedar-14/ruby-2.5.6.tgz"
dir = "vendor/ruby/cedar-14"
[[publish.Vendor]]
url = "https://s3-external-1.amazonaws.com/heroku-buildpack-ruby/heroku-16/ruby-2.5.5.tgz"
url = "https://s3-external-1.amazonaws.com/heroku-buildpack-ruby/heroku-16/ruby-2.5.6.tgz"
dir = "vendor/ruby/heroku-16"
[[publish.Vendor]]
url = "https://s3-external-1.amazonaws.com/heroku-buildpack-ruby/heroku-18/ruby-2.5.5.tgz"
url = "https://s3-external-1.amazonaws.com/heroku-buildpack-ruby/heroku-18/ruby-2.5.6.tgz"
dir = "vendor/ruby/heroku-18"
3 changes: 3 additions & 0 deletions changelogs/master/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.6

The [default Ruby version for new Ruby applications is 2.5.6](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.5"
DEFAULT_VERSION_NUMBER = "2.5.6"
DEFAULT_VERSION = "ruby-#{DEFAULT_VERSION_NUMBER}"
LEGACY_VERSION_NUMBER = "1.9.2"
LEGACY_VERSION = "ruby-#{LEGACY_VERSION_NUMBER}"
Expand Down

0 comments on commit 5c0977f

Please sign in to comment.