diff --git a/CHANGELOG.md b/CHANGELOG.md index a496c1900..52c64b83c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ ## [Unreleased] +## [v289] - 2025-01-17 + +- Ruby 3.3.7 is now available (https://github.com/heroku/heroku-buildpack-ruby/pull/1538) + ## [v288] - 2025-01-06 - Ruby apps using bundler 2.6+ will now receive bundler 2.6.2 (https://github.com/heroku/heroku-buildpack-ruby/pull/1535) @@ -1616,7 +1620,8 @@ Bugfixes: * Change gem detection to use lockfile parser * use `$RACK_ENV` when thin is detected for rack apps -[unreleased]: https://github.com/heroku/heroku-buildpack-ruby/compare/v288...main +[unreleased]: https://github.com/heroku/heroku-buildpack-ruby/compare/v289...main +[v289]: https://github.com/heroku/heroku-buildpack-ruby/compare/v288...v289 [v288]: https://github.com/heroku/heroku-buildpack-ruby/compare/v287...v288 [v287]: https://github.com/heroku/heroku-buildpack-ruby/compare/v286...v287 [v286]: https://github.com/heroku/heroku-buildpack-ruby/compare/v285...v286 diff --git a/changelogs/v289/ruby-3-3-7.md b/changelogs/v289/ruby-3-3-7.md new file mode 100644 index 000000000..75a40f185 --- /dev/null +++ b/changelogs/v289/ruby-3-3-7.md @@ -0,0 +1,9 @@ +## Ruby version 3.3.7 is now available + +[Ruby v3.3.7](/articles/ruby-support#ruby-versions) is now available on Heroku. To run your app using this version of Ruby, add the following `ruby` directive to your Gemfile: + +```ruby +ruby "3.3.7" +``` + +For more information on [Ruby 3.3.7, you can view the release announcement](https://www.ruby-lang.org/en/news/). diff --git a/lib/language_pack/version.rb b/lib/language_pack/version.rb index fcec48d6b..ae9e41982 100644 --- a/lib/language_pack/version.rb +++ b/lib/language_pack/version.rb @@ -2,6 +2,6 @@ module LanguagePack class LanguagePack::Base - BUILDPACK_VERSION = "v288" + BUILDPACK_VERSION = "v289" end end