ruby-changes:62161
From: nagachika <ko1@a...>
Date: Thu, 9 Jul 2020 20:54:49 +0900 (JST)
Subject: [ruby-changes:62161] 6c22070408 (ruby_2_7): merge revision(s) 21d8e6924844d592ff2d5a2e7309457eb92e66f6:
https://git.ruby-lang.org/ruby.git/commit/?id=6c22070408 From 6c22070408f9729621712190bfc8460e5eebcb03 Mon Sep 17 00:00:00 2001 From: nagachika <nagachika@r...> Date: Thu, 9 Jul 2020 20:54:28 +0900 Subject: merge revision(s) 21d8e6924844d592ff2d5a2e7309457eb92e66f6: disable to show the maximum number of threads. On Deiban 9 environment, the thread tests failed and this maximum threads information can finish up the machine resources. To check it, I turned-off showing this information. diff --git a/bootstraptest/test_thread.rb b/bootstraptest/test_thread.rb index f00e2f7..e7ddadf 100644 --- a/bootstraptest/test_thread.rb +++ b/bootstraptest/test_thread.rb @@ -8,7 +8,8 @@ show_limit %q{ https://github.com/ruby/ruby/blob/trunk/bootstraptest/test_thread.rb#L8 puts "Thread count: #{threads.count} (#{error})" break end while true -} +} if false # disable to pass CI + assert_equal %q{ok}, %q{ Thread.new{ }.join diff --git a/version.h b/version.h index 00aaf0d..f43ec3f 100644 --- a/version.h +++ b/version.h @@ -2,11 +2,11 @@ https://github.com/ruby/ruby/blob/trunk/version.h#L2 # define RUBY_VERSION_MINOR RUBY_API_VERSION_MINOR #define RUBY_VERSION_TEENY 1 #define RUBY_RELEASE_DATE RUBY_RELEASE_YEAR_STR"-"RUBY_RELEASE_MONTH_STR"-"RUBY_RELEASE_DAY_STR -#define RUBY_PATCHLEVEL 88 +#define RUBY_PATCHLEVEL 89 #define RUBY_RELEASE_YEAR 2020 #define RUBY_RELEASE_MONTH 7 -#define RUBY_RELEASE_DAY 5 +#define RUBY_RELEASE_DAY 9 #include "ruby/version.h" -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/