summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-03-14 22:51:25 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-03-14 22:51:25 +0000
commitf3210924266c4742283c46921b69aa4bfae4ffe4 (patch)
tree409ff4bd76d00bdc9ee4736f56480500a814d532
parent703d9f61f0057be889ae0e468e0031781f450e3b (diff)
merge revision(s) 67261:
tool/make-snapshot: Use 6-spaces indent for SIZE and digests to align with release note markdown. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_5@67263 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rwxr-xr-xtool/make-snapshot4
-rw-r--r--version.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/tool/make-snapshot b/tool/make-snapshot
index 9dae143a20..b040aa73f8 100755
--- a/tool/make-snapshot
+++ b/tool/make-snapshot
@@ -456,9 +456,9 @@ revisions.collect {|rev| package(vcs, rev, destdir, tmp)}.flatten.each do |name|
end
str = open(name, "rb") {|f| f.read}
puts "* #{$colorize.pass(name)}"
- puts " SIZE: #{str.bytesize} bytes"
+ puts " SIZE: #{str.bytesize} bytes"
$digests.each do |alg|
- printf " %-8s%s\n", "#{alg}:", Digest.const_get(alg).hexdigest(str)
+ printf " %-8s%s\n", "#{alg}:", Digest.const_get(alg).hexdigest(str)
end
end
diff --git a/version.h b/version.h
index 3b9dbd43d2..274499728f 100644
--- a/version.h
+++ b/version.h
@@ -1,6 +1,6 @@
#define RUBY_VERSION "2.5.5"
#define RUBY_RELEASE_DATE "2019-03-15"
-#define RUBY_PATCHLEVEL 157
+#define RUBY_PATCHLEVEL 158
#define RUBY_RELEASE_YEAR 2019
#define RUBY_RELEASE_MONTH 3