Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v263 #1411

Merged
merged 1 commit into from
Dec 11, 2023
Merged

v263 #1411

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Main (unreleased)

## v263 (2023/12/11)

- Ruby 3.3.0-rc1 is now available (https://github.com/heroku/heroku-buildpack-ruby/pull/1411)
- Fix BUILDPACK_VENDOR_URL support (https://github.com/heroku/heroku-buildpack-ruby/pull/1406)

## v262 (2023/11/08)
Expand Down
15 changes: 15 additions & 0 deletions changelogs/v263/ruby-330-rc1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
## Ruby version 3.3.0-rc1 is now available

[Ruby v3.3.0-rc1](/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.0.rc1"
```

For more information on [Ruby 3.3.0-rc1, you can view the release announcement](https://www.ruby-lang.org/en/news/).

Note: This version of Ruby is not suitable for production applications.
However, it can be used to test that your application is ready for
the official release of Ruby 3.3.0 and
to provide feedback to the Ruby core team.
2 changes: 1 addition & 1 deletion lib/language_pack/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module LanguagePack
class LanguagePack::Base
BUILDPACK_VERSION = "v262"
BUILDPACK_VERSION = "v263"
end
end