[前][次][番号順一覧][スレッド一覧]

ruby-changes:28115

From: nagachika <ko1@a...>
Date: Sun, 7 Apr 2013 02:51:24 +0900 (JST)
Subject: [ruby-changes:28115] nagachika:r40167 (ruby_2_0_0): merge revision(s) 39785: [Backport #8108]

nagachika	2013-04-07 02:51:14 +0900 (Sun, 07 Apr 2013)

  New Revision: 40167

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=40167

  Log:
    merge revision(s) 39785: [Backport #8108]
    
    * array.c: fix rdoc. [ruby-core:53485] [ruby-trunk - Bug #8108]

  Modified directories:
    branches/ruby_2_0_0/
  Modified files:
    branches/ruby_2_0_0/array.c
    branches/ruby_2_0_0/version.h

Index: ruby_2_0_0/array.c
===================================================================
--- ruby_2_0_0/array.c	(revision 40166)
+++ ruby_2_0_0/array.c	(revision 40167)
@@ -5226,7 +5226,7 @@ rb_ary_drop_while(VALUE ary) https://github.com/ruby/ruby/blob/trunk/ruby_2_0_0/array.c#L5226
  *
  *     ary = Array.new    #=> []
  *     Array.new(3)       #=> [nil, nil, nil]
- *     Array.new(3, true) #=> [0, 0, 0]
+ *     Array.new(3, true) #=> [true, true, true]
  *
  *  Note that the second argument populates the array with references to the
  *  same object.  Therefore, it is only recommended in cases when you need to
Index: ruby_2_0_0/version.h
===================================================================
--- ruby_2_0_0/version.h	(revision 40166)
+++ ruby_2_0_0/version.h	(revision 40167)
@@ -1,10 +1,10 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_0_0/version.h#L1
 #define RUBY_VERSION "2.0.0"
-#define RUBY_RELEASE_DATE "2013-04-05"
-#define RUBY_PATCHLEVEL 106
+#define RUBY_RELEASE_DATE "2013-04-07"
+#define RUBY_PATCHLEVEL 107
 
 #define RUBY_RELEASE_YEAR 2013
 #define RUBY_RELEASE_MONTH 4
-#define RUBY_RELEASE_DAY 5
+#define RUBY_RELEASE_DAY 7
 
 #include "ruby/version.h"
 

Property changes on: ruby_2_0_0
___________________________________________________________________
Modified: svn:mergeinfo
   Merged /trunk:r39785


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]