Skip to content

Commit

Permalink
Update README & Release Notes
Browse files Browse the repository at this point in the history
  • Loading branch information
jmig committed Apr 16, 2014
1 parent 2ff969c commit aab7b10
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ PDTSimpleCalendar is a very simple calendar/date picker component for your iOS a

###Upgrade Note

If you upgrade from a version prior to 0.6, you will notice that the delegate format have change. Previous delegate definitions (and also a static variable) have been deprecated. They will be removed in the next release.
You should read the [Release Notes](https://github.com/jivesoftware/PDTSimpleCalendar/blob/master/RELEASENOTES.md) when you upgrade to a newer version.

##Install

Expand Down
14 changes: 12 additions & 2 deletions RELEASENOTE.md → RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
##PDTSimpleCalendar Release Note
##PDTSimpleCalendar Release Notes

###0.7.0

####Behavior change

`setSelectedDate:animated:` is now deprecated and will be removed in next version. Selecting a date in the calendar shouldn't be tied to scrolling to it.

Use `setSelectedDate:` & `scrollToSelectedDate:` instead.

####Spring Cleaning:

Old delegates methods have been removed from the code base.
Expand All @@ -24,6 +30,10 @@ You should now use:

`PDTSimpleCalendarDaysPerWeek` has been removed from the code base. Days per week are automatically retrieve from the `calendar` property.

Fix: `scrollToDate` takes into account `contentInset`

###0.6

if you specify a `firstDate` and/or `lastDate` the calendar will display the full month, but dates < `firstDate` or > `lastDate` will be disabled. You can see this behavior in the demo app.
if you specify a `firstDate` and/or `lastDate` the calendar will display the full month, but dates < `firstDate` or > `lastDate` will be disabled. You can see this behavior in the demo app.

You will notice that the delegate format have changed. Previous delegate definitions (and also a static variable) have been deprecated. They will be removed in the next release.

0 comments on commit aab7b10

Please sign in to comment.