forked from ice-cube-ruby/ice_cube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
35 lines (26 loc) · 1.18 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
0.6.0
* [#8] Changed how time serialization is done to preserve TimeWithZone when appropriate.
Backward compatibility is intact, but bumping the minor version for the YAML format change.
* [#11] Fixed next occurrence to work on never-ending schedules
0.6.1
* Lessen the amount of info we store in yaml on the time zone
0.6.2
* Patch release for to_yaml performance issue
0.6.3
* Change how active_support_occurs_on works
* Fixed bug where next_occurrence wouldn't work if no end_date was set
0.6.4
* Fixed bug where next_occurrence wouldn't actually grab the correct next occurrence with
schedules that had more than one recurrence rule and/or a recurrence rule and a recurrence date
* Added next_occurrences function to schedule, allowing you to get the next N occurrences after a
given date
0.6.5
* Added a :start_date_override option to from_hash / from_yaml (@sakrafd)
0.6.9
* Added support for Schedule#occurs_between?
0.6.10
* UNTIL date now serialized with time information
0.6.11
* Added the ability to add and remove rdates, rrules, exdates, and exrules from a schedule
0.6.12
* Be able to set the start_date and duration after creating a schedule