Skip to content

Commit 917c04e

Browse files
committed
Update to ruby-3.3.6
1 parent 9088d3e commit 917c04e

8 files changed

+16
-6
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
include:
14-
- target_ruby: "3.3.5"
14+
- target_ruby: "3.3.6"
1515
arch: "x86-msvcrt"
1616
build_ruby: "3.1.6/x64"
1717
run_mri_spec: v3_3_3
1818

19-
- target_ruby: "3.3.5"
19+
- target_ruby: "3.3.6"
2020
arch: "x64-ucrt"
2121
build_ruby: "3.1.6/x64"
2222
run_mri_spec: v3_3_3

CHANGELOG-3.3.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## RubyInstaller-3.3.6-1 - 2024-11-07
2+
3+
### Changed
4+
- Update to ruby-3.3.6, see [release notes](https://www.ruby-lang.org/en/news/2024/11/05/ruby-3-3-6-released/).
5+
- Update the SSL CA certificate list.
6+
- Update to OpenSSL-3.4.0. The Ruby API dosn't change.
7+
- Avoid early load of etc.so allowing updates of etc.gem. [#388](https://github.com/oneclick/rubyinstaller2/issues/388)
8+
- Set a single key in gemrc to allow appending to this file. [#388](https://github.com/oneclick/rubyinstaller2/issues/388#issuecomment-2348393612)
9+
10+
111
## RubyInstaller-3.3.5-1 - 2024-09-05
212

313
### Changed

packages/ri-msys/Rakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ end
5151
ovl_glob('recipes/*/task.rake').each{|f| load(ovl_expand_file(f)) }
5252

5353
ruby_arch_packages = %w[x64-ucrt].map do |arch|
54-
%w[3.1.6-1 3.2.6-1 3.3.5-1 head].map do |packagever|
54+
%w[3.1.6-1 3.2.6-1 3.3.6-1 head].map do |packagever|
5555
RubyPackage.new( packagever: packagever, arch: arch, rootdir: __dir__ ).freeze
5656
end
5757
end
5858
ruby_arch_packages += %w[x64-msvcrt x86-msvcrt].map do |arch|
59-
%w[2.4.10-2 2.5.9-1 2.6.10-1 2.7.8-1 3.0.7-1 3.1.6-1 3.2.6-1 3.3.5-1 head].map do |packagever|
59+
%w[2.4.10-2 2.5.9-1 2.6.10-1 2.7.8-1 3.0.7-1 3.1.6-1 3.2.6-1 3.3.6-1 head].map do |packagever|
6060
RubyPackage.new( packagever: packagever, arch: arch, rootdir: __dir__ ).freeze
6161
end
6262
end

packages/ri/Rakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ end
4646
ovl_glob('recipes/*/task.rake').each{|f| load(ovl_expand_file(f)) }
4747

4848
ruby_arch_packages = %w[x64-ucrt].map do |arch|
49-
%w[3.1.6-1 3.2.6-1 3.3.5-1 head].map do |packagever|
49+
%w[3.1.6-1 3.2.6-1 3.3.6-1 head].map do |packagever|
5050
RubyPackage.new( packagever: packagever, arch: arch, rootdir: __dir__ ).freeze
5151
end
5252
end
5353
ruby_arch_packages += %w[x64-msvcrt x86-msvcrt].map do |arch|
54-
%w[2.4.10-2 2.5.9-1 2.6.10-1 2.7.8-1 3.0.7-1 3.1.6-1 3.2.6-1 3.3.5-1 head].map do |packagever|
54+
%w[2.4.10-2 2.5.9-1 2.6.10-1 2.7.8-1 3.0.7-1 3.1.6-1 3.2.6-1 3.3.6-1 head].map do |packagever|
5555
RubyPackage.new( packagever: packagever, arch: arch, rootdir: __dir__ ).freeze
5656
end
5757
end

0 commit comments

Comments
 (0)