diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-01-01 01:59:14 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-01-01 01:59:14 +0000 |
commit | 0e218279fab2af1c67026d13c331ef1c8a05824a (patch) | |
tree | 7b31e2317a9ef8657ecdcadbdd55ceb57d5fdf5f | |
parent | 035300919894ad9137a0ff1ef14d0d2d88cccb8b (diff) |
* intern.h (VALUE rb_ary_join): I have never seen this function
anywhere.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@30443 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | intern.h | 1 | ||||
-rw-r--r-- | version.h | 10 |
3 files changed, 11 insertions, 7 deletions
@@ -1,9 +1,14 @@ +Sat Jan 1 10:59:11 2011 Nobuyoshi Nakada <[email protected]> + + * intern.h (VALUE rb_ary_join): I have never seen this function + anywhere. + Mon Dec 27 15:55:36 2010 NAKAMURA Usaku <[email protected]> * win32/README.win32: note to need NT based OS to build ruby. * win32/{configure.bat,setup.mak}: backport current build method from - trunk. [ruby-dev:42893] (#4206) + trunk. [ruby-dev:42893] (#4206) Thu Dec 23 12:11:22 2010 Tanaka Akira <[email protected]> @@ -47,7 +47,6 @@ VALUE rb_ary_unshift _((VALUE, VALUE)); VALUE rb_ary_entry _((VALUE, long)); VALUE rb_ary_each _((VALUE)); VALUE rb_ary_join _((VALUE, VALUE)); -VALUE rb_ary_print_on _((VALUE, VALUE)); VALUE rb_ary_reverse _((VALUE)); VALUE rb_ary_sort _((VALUE)); VALUE rb_ary_sort_bang _((VALUE)); @@ -1,15 +1,15 @@ #define RUBY_VERSION "1.8.8" -#define RUBY_RELEASE_DATE "2010-12-27" +#define RUBY_RELEASE_DATE "2011-01-01" #define RUBY_VERSION_CODE 188 -#define RUBY_RELEASE_CODE 20101227 +#define RUBY_RELEASE_CODE 20110101 #define RUBY_PATCHLEVEL 1 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 8 #define RUBY_VERSION_TEENY 8 -#define RUBY_RELEASE_YEAR 2010 -#define RUBY_RELEASE_MONTH 12 -#define RUBY_RELEASE_DAY 27 +#define RUBY_RELEASE_YEAR 2011 +#define RUBY_RELEASE_MONTH 1 +#define RUBY_RELEASE_DAY 1 #define NO_STRING_LITERAL_CONCATENATION 1 #ifdef RUBY_EXTERN |