Skip to content

Commit b6a0e7e

Browse files
committed
Upgrade to Ruby 3.3.8
1 parent d5627b6 commit b6a0e7e

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
* Removed Ruby 3.1 (EOL: 2024-03-26)
33
* Upgraded Node 20 LTS -> 22 LTS.
44
* Upgraded image base to phusion/baseimage:noble-1.0.1
5+
* Upgraded to Ruby 3.3.8 (from 3.3.7).
56
*
67

78
## 3.1.3 (release date: 2025-04-04)

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.2.8, 3.3.7, 3.4.2 and JRuby 9.3.15.0 and 9.4.9.0.
97+
* Ruby 3.2.8, 3.3.8, 3.4.2 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.2 is configured as the default.
100100
* JRuby is installed from source, but we register an APT entry for it.
@@ -450,8 +450,8 @@ The default Ruby (what the `/usr/bin/ruby` command executes) is the latest Ruby
450450
```dockerfile
451451
# Ruby 3.2.8
452452
RUN bash -lc 'rvm --default use ruby-3.2.8'
453-
# Ruby 3.3.7
454-
RUN bash -lc 'rvm --default use ruby-3.3.7'
453+
# Ruby 3.3.8
454+
RUN bash -lc 'rvm --default use ruby-3.3.8'
455455
# Ruby 3.4.2
456456
RUN bash -lc 'rvm --default use ruby-3.4.2'
457457
# JRuby 9.3.15.0
@@ -468,9 +468,9 @@ Learn more: [RVM: Setting the default Ruby](https://rvm.io/rubies/default).
468468
You can run any command with a specific Ruby version by prefixing it with `rvm-exec <IDENTIFIER>`. For example:
469469

470470
```bash
471-
$ rvm-exec 3.3.7 ruby -v
472-
Using /usr/local/rvm/gems/ruby-3.3.7
473-
ruby 3.3.7 (2025-01-15 revision be31f993d7) [x86_64-linux]
471+
$ rvm-exec 3.3.8 ruby -v
472+
Using /usr/local/rvm/gems/ruby-3.3.8
473+
ruby 3.3.8 (2025-04-09 revision b200bad6cd) [x86_64-linux]
474474

475475
$ rvm-exec 3.4.2 ruby -v
476476
Using /usr/local/rvm/gems/ruby-3.4.2
File renamed without changes.

0 commit comments

Comments
 (0)