From c11eabf5c47a548f0c38b42912207435e812aa7f Mon Sep 17 00:00:00 2001 From: wyhaines Date: Thu, 4 Mar 2010 19:01:52 +0000 Subject: [PATCH] Fix for Bug #1718 [ruby-core:24121]. Add a :startdoc into lib/yaml/tag.rb git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@26819 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ lib/yaml/tag.rb | 1 + version.h | 8 ++++---- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9deab108e8..4b285c90da 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Fri Mar 5 03:58:00 2010 Kirk Haines + + * lib/yaml/tag.rb: Add a :startdoc: at the end of the YAML specific Module functions so that the rest of the Module docs get generated. Fixes Bug #1718 [ruby-core:24121]. + Fri Feb 5 07:19:00 2010 Kirk Haines * eval.c: Small syntax change and dead code removal to fix build problems on some platforms. diff --git a/lib/yaml/tag.rb b/lib/yaml/tag.rb index 0fb6bef9a0..65e9f0372b 100644 --- a/lib/yaml/tag.rb +++ b/lib/yaml/tag.rb @@ -88,4 +88,5 @@ class Module def yaml_tag_read_class( name ) name end + # :startdoc: end diff --git a/version.h b/version.h index 05bd94a2bf..58ad093071 100644 --- a/version.h +++ b/version.h @@ -1,14 +1,14 @@ #define RUBY_VERSION "1.8.6" -#define RUBY_RELEASE_DATE "2010-02-05" +#define RUBY_RELEASE_DATE "2010-03-05" #define RUBY_VERSION_CODE 186 -#define RUBY_RELEASE_CODE 20100205 -#define RUBY_PATCHLEVEL 399 +#define RUBY_RELEASE_CODE 20100305 +#define RUBY_PATCHLEVEL 400 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 8 #define RUBY_VERSION_TEENY 6 #define RUBY_RELEASE_YEAR 2010 -#define RUBY_RELEASE_MONTH 2 +#define RUBY_RELEASE_MONTH 3 #define RUBY_RELEASE_DAY 5 #ifdef RUBY_EXTERN