mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* tool/merger.rb (versionup): should also increment revision when
changing teeny. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50313 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
760ae4a8b9
commit
cdf0a92c75
2 changed files with 9 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
|||
Tue Apr 14 16:03:49 2015 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* tool/merger.rb (versionup): should also increment revision when
|
||||
changing teeny.
|
||||
|
||||
Tue Apr 14 11:24:56 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/-test-/printf/printf.c (uint_to_str): renamed to get rid of
|
||||
|
|
|
@ -79,10 +79,10 @@ def version_up(inc=nil)
|
|||
|
||||
if inc == :teeny
|
||||
v[2].succ!
|
||||
else # patchlevel
|
||||
if pl != "-1"
|
||||
pl.succ!
|
||||
end
|
||||
end
|
||||
# patchlevel
|
||||
if pl != "-1"
|
||||
pl.succ!
|
||||
end
|
||||
|
||||
str = open 'version.h', 'rb' do |f| f.read end
|
||||
|
|
Loading…
Reference in a new issue