summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwyhaines <wyhaines@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-09 18:48:23 +0000
committerwyhaines <wyhaines@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-09 18:48:23 +0000
commitb4b5d8f750e5c789c4b3eb152fbfa610dff1dff0 (patch)
tree88ce496b6e87f9b50d235d49001bffe53b7e0bfc
parent6dd00f0e08ed2eecc8ab273c4c311c25328be1cb (diff)
Removed private on to_date and to_datetime.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@24008 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog2
-rw-r--r--lib/date.rb2
-rw-r--r--version.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 69b064cc21..58c751f9f9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,6 +8,8 @@ Thu Jul 9 11:22:00 2009 Kirk Haines <khaines@ruby-lang.org>
* 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 <khaines@ruby-lang.org>
* lib/soap/mimemessage.rb: Fixed a typo -- conent -> content
diff --git a/lib/date.rb b/lib/date.rb
index ea557313f7..4ec8fb1cc2 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 786aa2e765..2ebd71a532 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