From 0cbf1eb06ba49c4d183197165a3af32d2ad121df Mon Sep 17 00:00:00 2001 From: wyhaines Date: Thu, 9 Jul 2009 18:48:23 +0000 Subject: Removed private on to_date and to_datetime. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_6@24008 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 2 ++ lib/date.rb | 2 -- version.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 69b064cc2..58c751f9f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,8 @@ Thu Jul 9 11:22:00 2009 Kirk Haines * ext/socket/extconf.rb: Corrected function definitions to specify return values. + * lib/date.rb: Removed private on to_date and to_datetime + Mon Jun 8 12:46:00 2009 Kirk Haines * lib/soap/mimemessage.rb: Fixed a typo -- conent -> content diff --git a/lib/date.rb b/lib/date.rb index ea557313f..4ec8fb1cc 100644 --- a/lib/date.rb +++ b/lib/date.rb @@ -1604,8 +1604,6 @@ class Time DateTime.new!(DateTime.jd_to_ajd(jd, fr, of), of, DateTime::ITALY) end - private :to_date, :to_datetime - end class Date diff --git a/version.h b/version.h index 786aa2e76..2ebd71a53 100644 --- a/version.h +++ b/version.h @@ -2,7 +2,7 @@ #define RUBY_RELEASE_DATE "2009-06-08" #define RUBY_VERSION_CODE 186 #define RUBY_RELEASE_CODE 20090608 -#define RUBY_PATCHLEVEL 373 +#define RUBY_PATCHLEVEL 374 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 8 -- cgit