forked from fnando/recurrence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
History.txt
83 lines (50 loc) · 2.04 KB
/
History.txt
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
== 0.0.1 2008-09-21
* Initial release
== 0.0.2 2008-09-21
* Added `items` and `items!` methods; returns an array with all events
== 0.0.3 2008-09-22
* The recurrence now considers the starting date and its configurations
* Added lots of specs
== 0.0.4 2008-09-30
* Renamed items method to events
* Added each! method
* Added lots of specs
== 0.0.5 2008-09-30
* Monthly interval now accepts symbols: monthly, bimonthly, quarterly, semesterly
== 0.0.6 2009-01-06
* Code refactoring
* Added next and next! methods
* Added more specs
* Yearly interval now accepts symbols: jan-dec and january-december
== 0.0.7 2009-01-06
* The events method now accepts :starts and :until dates
== 0.0.8 2009-01-07
* The iteration is stopped when the :until is reached when limiting events
== 0.1.0 2009-07-18
* Allow monthly recurrences to occur by weekday:
Recurrence.new(:every => :month, :on => :first, :weekday => :thursday)
* Allow several weekdays to be given to weekly recurrence:
Recurrence.new(:every => :week, :on => [:monday, :wednesday, :friday])
* Added :daily, :weekly, :monthly and :yearly shortcuts to Recurrence.
== 0.1.1 2009-12-18
* Removed ActiveSupport deprecation; should require active_support instead.
== 0.1.2 2010-09-09
* Refactor, refactor, refactor.
* Using Recurrence as Rails plugin is now deprecated; install it as a gem instead.
== 0.1.3 2010-09-14
* Moved Recurrence class to SimpleIdeias namespace; see troubleshooting section for instructions.
== 0.1.4 2010-10-19
* Bug fix: yearly recurrence was raising an error
== 0.1.5 2010-11-03
* Recurrence.default_starts_date is now configurable; pass in a String or block
* Add Recurrence#options reader so we'll be able to use Recurrence with ActiveRecord.composed_of
== 1.0.0 2010-11-16
* Recurrence#each returns an enumerator when no block is given
* Recurrence now includes Enumerable
* The public API is now documented
* Remove support for Rails plugin
== 1.0.1 2010-11-19
* Added :repeat option
* Added support for weekday shortcut (sun..sat)
== 1.0.2 2011-02-09
* Added Ruby 1.8 support