ruby: 2.7.4 -> 2.7.5, 3.0.2 -> 3.0.3

This commit is contained in:
Charlotte Van Petegem 2021-11-25 10:11:28 +01:00
parent 4f32620715
commit 26038de225
No known key found for this signature in database
GPG Key ID: 019E764B7184435A
2 changed files with 8 additions and 8 deletions

View File

@ -252,18 +252,18 @@ let
in {
ruby_2_7 = generic {
version = rubyVersion "2" "7" "4" "";
version = rubyVersion "2" "7" "5" "";
sha256 = {
src = "0nxwkxh7snmjqf787qsp4i33mxd1rbf9yzyfiky5k230i680jhrh";
git = "1prsrqwkla4k5japlm54k0j700j4824rg8z8kpswr9r3swrmrf5p";
src = "1wc1hwmz4m6iqlmqag8liyld917p6a8dvnhnpd1v8d8jl80bjm97";
git = "16565fyl7141hr6q6d74myhsz46lvgam8ifnacshi68vzibwjbbh";
};
};
ruby_3_0 = generic {
version = rubyVersion "3" "0" "2" "";
version = rubyVersion "3" "0" "3" "";
sha256 = {
src = "1wg6yyzc6arzikcy48igqbxfcdc79bmfpiyfi9m9j1lzmphdx1ah";
git = "1kbkxqichi11vli080jgyvjf2xgnlbl9l2f2n1hv4s8b31gjib3r";
src = "1b4j39zyyvdkf1ax2c6qfa40b4mxfkr87zghhw19fmnzn8f8d1im";
git = "1q19w5i1jkfxn7qq6f9v9ngax9h52gxwijk7hp312dx6amwrkaim";
};
};
}

View File

@ -1,12 +1,12 @@
{ patchSet, useRailsExpress, ops, patchLevel, fetchpatch }:
{
"2.7.4" = ops useRailsExpress [
"2.7.5" = ops useRailsExpress [
"${patchSet}/patches/ruby/2.7/head/railsexpress/01-fix-broken-tests-caused-by-ad.patch"
"${patchSet}/patches/ruby/2.7/head/railsexpress/02-improve-gc-stats.patch"
"${patchSet}/patches/ruby/2.7/head/railsexpress/03-more-detailed-stacktrace.patch"
];
"3.0.2" = ops useRailsExpress [
"3.0.3" = ops useRailsExpress [
"${patchSet}/patches/ruby/3.0/head/railsexpress/01-improve-gc-stats.patch"
"${patchSet}/patches/ruby/3.0/head/railsexpress/02-malloc-trim.patch"
];