From 6320b5e03a1a0e77446203d835d0a574817e0251 Mon Sep 17 00:00:00 2001 From: Richard Schneeman Date: Fri, 17 Jan 2025 11:13:28 -0600 Subject: [PATCH 1/2] Ruby 3.3.7 (#1538) --- CHANGELOG.md | 1 + changelogs/unreleased/ruby-3-3-7.md | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 changelogs/unreleased/ruby-3-3-7.md diff --git a/CHANGELOG.md b/CHANGELOG.md index a496c1900..96034ade2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## [Unreleased] +- Ruby 3.3.7 is now available (https://github.com/heroku/heroku-buildpack-ruby/pull/1538) ## [v288] - 2025-01-06 diff --git a/changelogs/unreleased/ruby-3-3-7.md b/changelogs/unreleased/ruby-3-3-7.md new file mode 100644 index 000000000..75a40f185 --- /dev/null +++ b/changelogs/unreleased/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/). From 3ecf6192769ddd1a71d2ab40c04d7fa5756d7db0 Mon Sep 17 00:00:00 2001 From: "heroku-linguist[bot]" <136119646+heroku-linguist[bot]@users.noreply.github.com> Date: Fri, 17 Jan 2025 17:57:38 +0000 Subject: [PATCH 2/2] Prepare release v289 (#1539) Co-authored-by: heroku-linguist[bot] <136119646+heroku-linguist[bot]@users.noreply.github.com> --- CHANGELOG.md | 6 +++++- changelogs/{unreleased => v289}/ruby-3-3-7.md | 0 lib/language_pack/version.rb | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) rename changelogs/{unreleased => v289}/ruby-3-3-7.md (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96034ade2..52c64b83c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## [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 @@ -1617,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/unreleased/ruby-3-3-7.md b/changelogs/v289/ruby-3-3-7.md similarity index 100% rename from changelogs/unreleased/ruby-3-3-7.md rename to changelogs/v289/ruby-3-3-7.md 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