aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornagachika <nagachika@ruby-lang.org>2020-07-09 20:54:28 +0900
committernagachika <nagachika@ruby-lang.org>2020-07-09 20:54:28 +0900
commit6c22070408f9729621712190bfc8460e5eebcb03 (patch)
treeff614048448fd2a0327404678aae82f6577532e9
parent9720591043003a5262c8f3e1c1720771bc77488b (diff)
downloadruby-6c22070408f9729621712190bfc8460e5eebcb03.tar.gz
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.
-rw-r--r--bootstraptest/test_thread.rb3
-rw-r--r--version.h4
2 files changed, 4 insertions, 3 deletions
diff --git a/bootstraptest/test_thread.rb b/bootstraptest/test_thread.rb
index f00e2f7efc..e7ddadf4a7 100644
--- a/bootstraptest/test_thread.rb
+++ b/bootstraptest/test_thread.rb
@@ -8,7 +8,8 @@ show_limit %q{
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 00aaf0de36..f43ec3fdc5 100644
--- a/version.h
+++ b/version.h
@@ -2,11 +2,11 @@
# 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"