Skip to content

Commit 164f5dd

Browse files
committed
Update to Ruby-4.0.2
1 parent 2452210 commit 164f5dd

File tree

8 files changed

+21
-8
lines changed

8 files changed

+21
-8
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
include:
18-
- target_ruby: "4.0.1"
18+
- target_ruby: "4.0.2"
1919
arch: "x64-ucrt"
2020
build_ruby: "3.3.10/x64"
21-
run_mri_spec: v4.0.1
21+
run_mri_spec: v4.0.2
2222
runon: windows-latest
2323

24-
- target_ruby: "4.0.1"
24+
- target_ruby: "4.0.2"
2525
arch: "arm-ucrt"
2626
build_ruby: "3.4.7/x64"
27-
run_mri_spec: v4.0.1
27+
run_mri_spec: v4.0.2
2828
runon: windows-11-arm
2929

3030
- target_ruby: "3.4.9"

CHANGELOG-3.4.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
### Added
44
- Add the missing `rdbg` executable. #474
5+
- Add more color to ridk outputs.
56

67
### Changed
78
- Update to ruby-3.4.9, see [release notes](https://www.ruby-lang.org/en/news/2026/03/11/ruby-3-4-9-released/).
@@ -13,6 +14,7 @@
1314
- Check and add directory `etc/ssl/certs` in `c_rehash.rb`. #472
1415
- Preliminary support for MSYS2 environment `clang64` . #471
1516
- Update links to point to the correct repository. #463
17+
- Update the SSL CA certificate list.
1618

1719
### Removed
1820
- Remove libgcc_s_seh-1.dll. It is no longer necessary. #467

CHANGELOG-4.0.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## RubyInstaller-4.0.2-1 - 2026-03-17
2+
3+
### Added
4+
- Add more text to the startmenu buttons and more color to outputs.
5+
6+
### Changed
7+
- Update to ruby-4.0.2, see [release notes](https://www.ruby-lang.org/en/news/2026/03/16/ruby-4-0-2-released/).
8+
- Update the SSL CA certificate list.
9+
- Change `libssl-3.dll` to `libssl-3-arm64.dll` on ARM64.
10+
11+
112
## RubyInstaller-4.0.1-1 - 2026-01-16
213

314
### Added

packages/ri-msys/Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ ruby_arch_packages = %w[x86-msvcrt].map do |arch|
6464
end
6565
end
6666
ruby_arch_packages += %w[x64-ucrt].map do |arch|
67-
%w[3.2.10-1 3.3.10-1 3.4.9-1 4.0.1-1 head].map do |packagever|
67+
%w[3.2.10-1 3.3.10-1 3.4.9-1 4.0.2-1 head].map do |packagever|
6868
RubyPackage.new( packagever: packagever, arch: arch, rootdir: __dir__ ).freeze
6969
end
7070
end
7171
ruby_arch_packages += %w[arm-ucrt].map do |arch|
72-
%w[3.4.9-1 4.0.1-1 head].map do |packagever|
72+
%w[3.4.9-1 4.0.2-1 head].map do |packagever|
7373
RubyPackage.new( packagever: packagever, arch: arch, rootdir: __dir__ ).freeze
7474
end
7575
end

packages/ri/Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,12 @@ ruby_arch_packages = %w[x86-msvcrt].map do |arch|
5757
end
5858
end
5959
ruby_arch_packages += %w[x64-ucrt].map do |arch|
60-
%w[3.2.10-1 3.3.10-1 3.4.9-1 4.0.1-1 head].map do |packagever|
60+
%w[3.2.10-1 3.3.10-1 3.4.9-1 4.0.2-1 head].map do |packagever|
6161
RubyPackage.new( packagever: packagever, arch: arch, rootdir: __dir__ ).freeze
6262
end
6363
end
6464
ruby_arch_packages += %w[arm-ucrt].map do |arch|
65-
%w[3.4.9-1 4.0.1-1 head].map do |packagever|
65+
%w[3.4.9-1 4.0.2-1 head].map do |packagever|
6666
RubyPackage.new( packagever: packagever, arch: arch, rootdir: __dir__ ).freeze
6767
end
6868
end
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)