Skip to content

Commit 1481390

Browse files
authored
Upgrade to Ruby 3.3.7 (#426)
1 parent 6c0f05e commit 1481390

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
* Added a Ruby 3.4 image (Ruby 3.4.1)
33
* Default Ruby version is now 3.4.1
44
* Upgraded to JRuby 9.4.9.0 (from 9.4.8.0).
5+
* Upgraded to Ruby 3.3.7
56

67
## 3.1.0 (release date: 2024-12-09)
78
* Upgraded image base to phusion/baseimage:noble-1.0.0

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Basics (learn more at [baseimage-docker](http://phusion.github.io/baseimage-dock
9494

9595
Language support:
9696

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

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

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

0 commit comments

Comments
 (0)