Skip to content

Commit 277d7c1

Browse files
committed
Update versions
1 parent 7a0b518 commit 277d7c1

File tree

7 files changed

+23
-23
lines changed

7 files changed

+23
-23
lines changed

.ruby-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.3
1+
3.2.2

doc/contributor/updating-ruby.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ Update all of these:
144144

145145
* Update `.ruby-version`, `TruffleRuby.LANGUAGE_VERSION`
146146
* Reset `lib/cext/ABI_version.txt` and `lib/cext/ABI_check.txt` to `1` if `RUBY_VERSION` was updated.
147-
* Update `versions.json` (with gem versions provided by `cat ../ruby/gems/bundled_gems`, `ls -l lib/gems/specifications/default` and `jt gem --version`)
147+
* Update `versions.json` (with gem versions provided by `cat ../ruby/gems/bundled_gems | sort`, `ls -l lib/gems/specifications/default` and `grep 'VERSION =' lib/mri/rubygems.rb`)
148148
* Also update version numbers in `src/main/c/Makefile`.
149149
* Copy and paste `-h` and `--help` output to `RubyLauncher` (instructions are in the end of the file `src/launcher/java/org/truffleruby/launcher/RubyLauncher.java`)
150150
* Copy and paste the TruffleRuby `--help` output to `doc/user/options.md` (e.g., with `jt ruby --help | xsel -b`)

lib/cext/ABI_check.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7
1+
1

lib/cext/ABI_version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
10
1+
1

src/main/c/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ BASIC_EXTCONF_DEPS := Makefile $(SPAWN_HELPER) $(TRUFFLE_POSIX) $(RUBY_HEADERS)
3030
# However, if libtruffleruby is recompiled, there is no need to rebuild C extensions, so it's a order-only-prerequisite.
3131
EXTCONF_DEPS := $(BASIC_EXTCONF_DEPS) | $(LIBTRUFFLERUBY)
3232

33-
DEBUG_GEM := $(ROOT)/lib/gems/gems/debug-1.6.3
33+
DEBUG_GEM := $(ROOT)/lib/gems/gems/debug-1.7.1
3434
DEBUG_GEM_EXT := $(DEBUG_GEM)/ext/debug
3535
DEBUG_GEM_EXT_SO := $(DEBUG_GEM_EXT)/debug.$(DLEXT)
3636
DEBUG_GEM_LIB_SO := $(DEBUG_GEM)/lib/debug/debug.$(DLEXT)
3737

38-
RBS_GEM := $(ROOT)/lib/gems/gems/rbs-2.7.0
38+
RBS_GEM := $(ROOT)/lib/gems/gems/rbs-2.8.2
3939
RBS_GEM_EXT := $(RBS_GEM)/ext/rbs_extension
4040
RBS_GEM_EXT_SO := $(RBS_GEM_EXT)/rbs_extension.$(DLEXT)
4141
RBS_GEM_LIB_SO := $(RBS_GEM)/lib/rbs_extension.$(DLEXT)

src/shared/java/org/truffleruby/shared/TruffleRuby.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public final class TruffleRuby {
1717
public static final String LANGUAGE_ID = "ruby";
1818
public static final String EXTENSION = ".rb";
1919
public static final String ENGINE_ID = "truffleruby";
20-
public static final String LANGUAGE_VERSION = "3.1.3";
20+
public static final String LANGUAGE_VERSION = "3.2.2";
2121
public static final String LANGUAGE_REVISION = BuildInformationImpl.INSTANCE.getFullRevision();
2222
public static final String BOOT_SOURCE_NAME = "main_boot_source";
2323
public static final String RUBY_COPYRIGHT = "truffleruby - Copyright (c) 2013-" +

versions.json

+16-16
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
{
22
"gems": {
33
"default": {
4-
"bundler": "2.3.26",
5-
"did_you_mean": "1.6.1",
6-
"erb": "2.2.3",
7-
"gem": "3.3.26",
8-
"irb": "1.4.1",
9-
"racc": "1.6.0",
10-
"rdoc": "6.4.0"
4+
"bundler": "2.4.10",
5+
"did_you_mean": "1.6.3",
6+
"erb": "4.0.2",
7+
"gem": "3.4.10",
8+
"irb": "1.6.2",
9+
"racc": "1.6.2",
10+
"rdoc": "6.5.0"
1111
},
1212

1313
"bundled": {
14-
"debug": "1.6.3",
14+
"debug": "1.7.1",
1515
"matrix": "0.4.2",
16-
"minitest": "5.15.0",
17-
"net-ftp": "0.1.3",
18-
"net-imap": "0.2.3",
19-
"net-pop": "0.1.1",
20-
"net-smtp": "0.3.1",
21-
"power_assert": "2.0.1",
16+
"minitest": "5.16.3",
17+
"net-ftp": "0.2.0",
18+
"net-imap": "0.3.4",
19+
"net-pop": "0.1.2",
20+
"net-smtp": "0.3.3",
21+
"power_assert": "2.0.3",
2222
"prime": "0.1.2",
2323
"rake": "13.0.6",
24-
"rbs": "2.7.0",
24+
"rbs": "2.8.2",
2525
"rexml": "3.2.5",
2626
"rss": "0.2.9",
27-
"test-unit": "3.5.3",
27+
"test-unit": "3.5.7",
2828
"typeprof": "0.21.3"
2929
}
3030
}

0 commit comments

Comments
 (0)