8000 Upgrade ruby 2 7 by eileencodes · Pull Request #115 · github/ruby · GitHub
[go: up one dir, main page]

Skip to content

Upgrade ruby 2 7 #115

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Jul 20, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
merge revision(s) 21d8e69:
	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.
  • Loading branch information
nagachika committed Jul 9, 2020
commit 6c22070408f9729621712190bfc8460e5eebcb03
3 changes: 2 additions & 1 deletion bootstraptest/test_thread.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
puts "Thread count: #{threads.count} (#{error})"
break
end while true
}
} if false # disable to pass CI

assert_equal %q{ok}, %q{
Thread.new{
}.join
Expand Down
4 changes: 2 additions & 2 deletions version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
0