Skip to content

Commit

Permalink
Updated readme with 'day in month' changes
Browse files Browse the repository at this point in the history
  • Loading branch information
belkevich committed Sep 28, 2014
1 parent ecf5c82 commit 31dcb5a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ NSInteger weekday = date.weekday; // 5
NSInteger hour = date.hour; // 13
NSInteger minute = date.minute; // 4
NSInteger second = date.second; // 35
NSUInteger daysInMonth = date.daysInMonth; // 31
```

###### Create date from date components
Expand Down Expand Up @@ -165,7 +166,10 @@ BOOL isLessOrEqual = [date1 isLessOrEqualToDate:date2]; // YES
BOOL isGreaterOrEqual = [date1 isGreaterOrEqualToDate:date2]; // NO
```
#### History
#### History
**Version 0.0.5**
* Added 'days in month' property
**Version 0.0.4**
* Fixed potential bug in `dateWeekStart` and `dateWeekEnd` if local calendar's first weekday isn't sunday. Thanks to [artembartle](https://github.com/artembartle).
Expand Down

0 comments on commit 31dcb5a

Please sign in to comment.