All Versions
33
Latest Version
Avg Release Cycle
50 days
Latest Release
3220 days ago
Changelog History
Page 2
Changelog History
Page 2
-
v0.6.4 Changes
August 08, 2011- ๐ Fixed bug where 'noon' was parsed as 00:00 rather than 12:00 with :ambiguous_time_range => :none (Vladimir Chernis)
- โ Add support for handling '2009 May 22nd'
- โ Add the ability to handle scalar-day/repeater-month-name as well as ordinals
-
v0.6.3 Changes
August 01, 2011- ๐ Ensure 'thu' is parsed as Thursday for 1.8.7 generic timestamp
-
v0.6.2 Changes
July 28, 2011- Ensure specific endian handlers are prioritised over normal date handlers
- Recognize UTC as timezone and accept HH::MM timezone offset (Jason Dusek)
-
v0.6.1 Changes
July 21, 2011- Ensure Handler definitions are executed in the correct order
-
v0.6.0 Changes
July 19, 2011- ๐ Attempting to parse strings with days past the last day of a month will
now return nil. ex:
Chronic.parse("30th February") #=> nil
- ๐ All deprecated methods are marked for removal in Chronic 0.7.0
- ๐ Deprecated
Chronic.numericize_numbers
instead useChronic::Numerizer.numerize
- ๐ Deprecated
Chronic::InvalidArgumentException
and instead useArgumentError
- ๐ Deprecated
Time.construct
and useChronic.construct
in place of this - Deprecated
Time#to_minidate
, instead useChronic::MiniDate.from_time(time)
- โ Add support for handling generic timestamp for Ruby 1.9+
- ๐ Attempting to parse strings with days past the last day of a month will
now return nil. ex:
-
v0.5.0 Changes
July 01, 2011- Replace commas with spaces instead of removing the char (Thomas Walpole)
- โ Added tests for RepeaterSeason
- โ
Re-factored tests. Now rather than having a test_parsing method for testing
all handlers, break them down independent of handler method. For example
with handler
handle_sm_sd_sy
the subsequent test would betest_handle_sm_sd_sy
- โ Added support for parsing ordinal-dates/month-names/year, ie:
2nd of May 1995
- โ Added support for parsing ordinal-dates and month names, ie:
22nd of February at 6:30pm
- ๐ Fix
Time.construct
leap year checking. Instead useDate.leap?(year)
-
v0.4.4 Changes
June 12, 2011- ๐ Fix RepeaterYear for fetching past year offsets when the current day is
later than the last day of the same month in a past year (leap years) ie
on 29th/feb (leap year)
last year
should (and now does) return 28th/feb instead of 1st/march - โ Opt in for gem testing http://test.rubygems.org/
- ๐ Fix RepeaterYear for fetching past year offsets when the current day is
later than the last day of the same month in a past year (leap years) ie
on 29th/feb (leap year)
-
v0.4.3 Changes
June 08, 2011- ๐ Fix issue with parsing 1:xxPM -- Ensure 1 is treated as ambiguous, not just >1
-
v0.4.2 Changes
June 07, 2011- ๐ Fix MonthRepeater for fetching past month offsets when current day is
later than the last day of a past month (ie on 29th of March when parsing
last month
Chronic would return March instead of February. Now Chronic returns the last day of the past month)
- ๐ Fix MonthRepeater for fetching past month offsets when current day is
later than the last day of a past month (ie on 29th of March when parsing
-
v0.4.1 Changes
June 05, 2011- ๐ Fix MiniDate ranges for parsing seasons (Thomas Walpole)