Skip to content

Commit

Permalink
Prepare RubyInstaller-3.3.6-2
Browse files Browse the repository at this point in the history
  • Loading branch information
larskanis committed Nov 8, 2024
1 parent 917c04e commit a771ea0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG-3.3.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## RubyInstaller-3.3.6-2 - 2024-11-09

### Changed
- Fix regression of handling command line arguments with characters outside of the current code page.
In this case RubyInstaller-3.3.6-1 failed with:
`command line contains characters that are not supported in the active code page`
Fixes [bundler#8221](https://github.com/rubygems/rubygems/pull/8221)
- Fix automatic pacman package install when using bundler-2.5.x. [#396](https://github.com/oneclick/rubyinstaller2/issues/396)


## RubyInstaller-3.3.6-1 - 2024-11-07

### Changed
Expand Down
4 changes: 2 additions & 2 deletions packages/ri-msys/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ end
ovl_glob('recipes/*/task.rake').each{|f| load(ovl_expand_file(f)) }

ruby_arch_packages = %w[x64-ucrt].map do |arch|
%w[3.1.6-1 3.2.6-1 3.3.6-1 head].map do |packagever|
%w[3.1.6-1 3.2.6-1 3.3.6-2 head].map do |packagever|
RubyPackage.new( packagever: packagever, arch: arch, rootdir: __dir__ ).freeze
end
end
ruby_arch_packages += %w[x64-msvcrt x86-msvcrt].map do |arch|
%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|
%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-2 head].map do |packagever|
RubyPackage.new( packagever: packagever, arch: arch, rootdir: __dir__ ).freeze
end
end
Expand Down
4 changes: 2 additions & 2 deletions packages/ri/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ end
ovl_glob('recipes/*/task.rake').each{|f| load(ovl_expand_file(f)) }

ruby_arch_packages = %w[x64-ucrt].map do |arch|
%w[3.1.6-1 3.2.6-1 3.3.6-1 head].map do |packagever|
%w[3.1.6-1 3.2.6-1 3.3.6-2 head].map do |packagever|
RubyPackage.new( packagever: packagever, arch: arch, rootdir: __dir__ ).freeze
end
end
ruby_arch_packages += %w[x64-msvcrt x86-msvcrt].map do |arch|
%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|
%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-2 head].map do |packagever|
RubyPackage.new( packagever: packagever, arch: arch, rootdir: __dir__ ).freeze
end
end
Expand Down

0 comments on commit a771ea0

Please sign in to comment.