aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG
diff options
context:
space:
mode:
authorGeoff Buesing <gbuesing@gmail.com>2008-01-23 01:56:22 +0000
committerGeoff Buesing <gbuesing@gmail.com>2008-01-23 01:56:22 +0000
commit022d9f7ce6d1237c4103a2aed561220e1c0f4dcc (patch)
tree1d5ab8ddf1d3cde4cae5f6eec5ed07068ca7ce75 /activesupport/CHANGELOG
parenta91b7f19754d6fabe1cec3658bbaad45771f13c6 (diff)
downloadrails-022d9f7ce6d1237c4103a2aed561220e1c0f4dcc.tar.gz
rails-022d9f7ce6d1237c4103a2aed561220e1c0f4dcc.tar.bz2
rails-022d9f7ce6d1237c4103a2aed561220e1c0f4dcc.zip
Introduce ActiveSupport::TimeWithZone, for wrapping Time instances with a TimeZone. Introduce instance methods to Time for creating TimeWithZone instances, and class methods for managing a global time zone
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8696 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/CHANGELOG')
-rw-r--r--activesupport/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index 53ae421131..fa3e94dbf2 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Introduce ActiveSupport::TimeWithZone, for wrapping Time instances with a TimeZone. Introduce instance methods to Time for creating TimeWithZone instances, and class methods for managing a global time zone. [Geoff Buesing]
+
* Replace non-dst-aware TimeZone class with dst-aware class from tzinfo_timezone plugin. TimeZone#adjust and #unadjust are no longer available; tzinfo gem must now be present in order to perform time zone calculations, via #local_to_utc and #utc_to_local methods. [Geoff Buesing]
* Extract ActiveSupport::Callbacks from Active Record, test case setup and teardown, and ActionController::Dispatcher. #10727 [Josh Peek]