From 1beb2072cbce824e9a35266ab066193156aba6a3 Mon Sep 17 00:00:00 2001 From: Richard Schneeman Date: Wed, 8 Feb 2023 13:06:12 -0600 Subject: [PATCH] Update buildpack for Ruby and JRuby binary release (#1360) --- CHANGELOG.md | 5 +++++ changelogs/v252/jruby-9-4-1-0.md | 7 +++++++ changelogs/v252/ruby-3-2-1.md | 7 +++++++ lib/language_pack/version.rb | 2 +- 4 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 changelogs/v252/jruby-9-4-1-0.md create mode 100644 changelogs/v252/ruby-3-2-1.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 664be1461..2d4f847fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## Main (unreleased) +## v252 (2023/02/08) + +* Ruby 3.2.1 is now available +* JRuby 9.4.1.0 is now available + ## v251 (2023/02/03) * Jruby 9.3.10.0 is available diff --git a/changelogs/v252/jruby-9-4-1-0.md b/changelogs/v252/jruby-9-4-1-0.md new file mode 100644 index 000000000..6f5c6b945 --- /dev/null +++ b/changelogs/v252/jruby-9-4-1-0.md @@ -0,0 +1,7 @@ +## JRuby 9.4.1.0 is now available + +The following Ruby versions are now available on the Heroku platform: + +- JRuby 9.4.1.0 + +You can see the latest versions on the [Ruby support page](https://devcenter.heroku.com/articles/ruby-support). diff --git a/changelogs/v252/ruby-3-2-1.md b/changelogs/v252/ruby-3-2-1.md new file mode 100644 index 000000000..3625cb424 --- /dev/null +++ b/changelogs/v252/ruby-3-2-1.md @@ -0,0 +1,7 @@ +# Ruby version 3.2.1 is now available + +The following Ruby versions are now available on the Heroku platform: + +- Ruby 3.2.1 + +You can see the latest versions on the [Ruby support page](https://devcenter.heroku.com/articles/ruby-support). diff --git a/lib/language_pack/version.rb b/lib/language_pack/version.rb index bc7ee8e9a..bc5d66752 100644 --- a/lib/language_pack/version.rb +++ b/lib/language_pack/version.rb @@ -2,6 +2,6 @@ module LanguagePack class LanguagePack::Base - BUILDPACK_VERSION = "v251" + BUILDPACK_VERSION = "v252" end end