Skip to content

Commit

Permalink
Bump version to 2.4.2-2
Browse files Browse the repository at this point in the history
  • Loading branch information
larskanis committed Sep 15, 2017
1 parent eba607a commit a1b07ad
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## RubyInstaller-2.4.2-2 - 2017-09-15

### Changed
- Fix a regession of ruby-2.4.2 to not link to libgmp.
See [ruby-2.4.2 release notes](https://www.ruby-lang.org/en/news/2017/09/14/ruby-2-4-2-released/) .


## RubyInstaller-2.4.2-1 - 2017-09-15

### Added
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ install:
- c:/msys64/usr/bin/bash -lc "pacman -Sy --noconfirm"
# Update ruby dependencies, because the pre-installed are outdated.
# Keep this in sync with the "depends" list in PKGBUILD files.
- c:/msys64/usr/bin/bash -lc "pacman -S --noconfirm --needed ${MINGW_PACKAGE_PREFIX}-toolchain ${MINGW_PACKAGE_PREFIX}-gcc-libs ${MINGW_PACKAGE_PREFIX}-gdbm {MINGW_PACKAGE_PREFIX}-gmp ${MINGW_PACKAGE_PREFIX}-libffi ${MINGW_PACKAGE_PREFIX}-libyaml ${MINGW_PACKAGE_PREFIX}-openssl ${MINGW_PACKAGE_PREFIX}-zlib"
- c:/msys64/usr/bin/bash -lc "pacman -S --noconfirm --needed ${MINGW_PACKAGE_PREFIX}-toolchain ${MINGW_PACKAGE_PREFIX}-gcc-libs ${MINGW_PACKAGE_PREFIX}-gdbm ${MINGW_PACKAGE_PREFIX}-gmp ${MINGW_PACKAGE_PREFIX}-libffi ${MINGW_PACKAGE_PREFIX}-libyaml ${MINGW_PACKAGE_PREFIX}-openssl ${MINGW_PACKAGE_PREFIX}-zlib"

build_script:
- set PATH=C:/ruby%build_ruby%/bin;%PATH%
Expand Down
2 changes: 1 addition & 1 deletion packages/rubybundle/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ end
ovl_glob('recipes/*/task.rake').each{|f| load(ovl_expand_file(f)) }

ruby_arch_packages = %w[x64 x86].map do |arch|
%w[2.4.2-1 2.5.0-snapshot].map do |packagever|
%w[2.4.2-2 2.5.0-snapshot].map do |packagever|
RubyPackage.new( packagever: packagever, arch: arch, rootdir: __dir__ ).freeze
end
end
Expand Down
2 changes: 1 addition & 1 deletion packages/rubyinstaller/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ end

ovl_glob('recipes/*/task.rake').each{|f| load(ovl_expand_file(f)) }

ruby_packages = %w[2.4.2-1 2.5.0-snapshot].map do |packagever|
ruby_packages = %w[2.4.2-2 2.5.0-snapshot].map do |packagever|
%w[x64 x86].map do |arch|
RubyPackage.new( packagever: packagever, arch: arch, rootdir: __dir__ ).freeze
end
Expand Down

0 comments on commit a1b07ad

Please sign in to comment.