diff options
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rwxr-xr-x | tool/make-snapshot | 2 | ||||
| -rw-r--r-- | version.h | 8 |
3 files changed, 9 insertions, 5 deletions
@@ -1,3 +1,7 @@ +Tue Oct 1 00:28:40 2013 SHIBATA Hiroshi <shibata.hiroshi@gmail.com> + + * tool/make-snapshot: Fix order of priority for option parameter. + Sat Sep 28 21:40:40 2013 Kenichi Kamiya <kachick1@gmail.com> * random.c (rb_random_ulong_limited): coerce before check negative. diff --git a/tool/make-snapshot b/tool/make-snapshot index 2c0db91cd4..117d62524c 100755 --- a/tool/make-snapshot +++ b/tool/make-snapshot @@ -244,7 +244,7 @@ def package(rev, destdir) ["gzip tarball", ".tar.gz", %w"tar czf"], ["zip archive", ".zip", %w"zip -qr"] ].collect do |mesg, ext, cmd| - file = File.join(destdir, "#{v||$archname}#{ext}") + file = File.join(destdir, "#{$archname||v}#{ext}") print "creating #{mesg}... #{file}" if system(*(cmd + [file, v])) puts " done" @@ -1,10 +1,10 @@ #define RUBY_VERSION "2.0.0" -#define RUBY_RELEASE_DATE "2013-09-28" -#define RUBY_PATCHLEVEL 322 +#define RUBY_RELEASE_DATE "2013-10-01" +#define RUBY_PATCHLEVEL 323 #define RUBY_RELEASE_YEAR 2013 -#define RUBY_RELEASE_MONTH 9 -#define RUBY_RELEASE_DAY 28 +#define RUBY_RELEASE_MONTH 10 +#define RUBY_RELEASE_DAY 1 #include "ruby/version.h" |
