Skip to content

Commit

Permalink
Upgrade to Ruby 3.3.7 (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajhodgson authored Jan 15, 2025
1 parent 6c0f05e commit 1481390
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* Added a Ruby 3.4 image (Ruby 3.4.1)
* Default Ruby version is now 3.4.1
* Upgraded to JRuby 9.4.9.0 (from 9.4.8.0).
* Upgraded to Ruby 3.3.7

## 3.1.0 (release date: 2024-12-09)
* Upgraded image base to phusion/baseimage:noble-1.0.0
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Basics (learn more at [baseimage-docker](http://phusion.github.io/baseimage-dock

Language support:

* Ruby 3.1.6, 3.2.6, 3.3.6, 3.4.1 and JRuby 9.3.15.0 and 9.4.9.0.
* Ruby 3.1.6, 3.2.6, 3.3.7, 3.4.1 and JRuby 9.3.15.0 and 9.4.9.0.
* RVM is used to manage Ruby versions. [Why RVM?](#why_rvm)
* 3.4.1 is configured as the default.
* JRuby is installed from source, but we register an APT entry for it.
Expand Down Expand Up @@ -456,8 +456,8 @@ The default Ruby (what the `/usr/bin/ruby` command executes) is the latest Ruby
RUN bash -lc 'rvm --default use ruby-3.1.6'
# Ruby 3.2.6
RUN bash -lc 'rvm --default use ruby-3.2.6'
# Ruby 3.3.6
RUN bash -lc 'rvm --default use ruby-3.3.6'
# Ruby 3.3.7
RUN bash -lc 'rvm --default use ruby-3.3.7'
# Ruby 3.4.1
RUN bash -lc 'rvm --default use ruby-3.4.1'
# JRuby 9.3.15.0
Expand All @@ -474,9 +474,9 @@ Learn more: [RVM: Setting the default Ruby](https://rvm.io/rubies/default).
You can run any command with a specific Ruby version by prefixing it with `rvm-exec <IDENTIFIER>`. For example:

```bash
$ rvm-exec 3.3.6 ruby -v
Using /usr/local/rvm/gems/ruby-3.3.6
ruby 3.3.6 (2024-11-05 revision 75015d4c1f) [x86_64-linux]
$ rvm-exec 3.3.7 ruby -v
Using /usr/local/rvm/gems/ruby-3.3.7
ruby 3.3.7 (2025-01-15 revision be31f993d7) [x86_64-linux]

$ rvm-exec 3.4.1 ruby -v
Using /usr/local/rvm/gems/ruby-3.4.1
Expand Down
File renamed without changes.

0 comments on commit 1481390

Please sign in to comment.