Skip to content

Commit

Permalink
Bump to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jmig committed Jul 16, 2015
1 parent beb84eb commit 203cb17
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 7 deletions.
4 changes: 2 additions & 2 deletions PDTSimpleCalendar.podspec
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "PDTSimpleCalendar"
s.version = "0.7.1"
s.version = "0.8.0"
s.summary = "A simple Calendar/Date Picker with a nice iOS7/iOS8 design."

s.description = <<-DESC
Expand All @@ -15,7 +15,7 @@ Pod::Spec.new do |s|
s.author = { "Jerome Miglino" => "jerome.miglino@jivesoftware.com" }
s.platform = :ios, '6.0'
s.source = { :git => "https://github.com/jivesoftware/PDTSimpleCalendar.git", :tag => s.version.to_s }
s.source_files = 'PDTSimpleCalendar',
s.source_files = 'PDTSimpleCalendar/*.{h,m}',
s.exclude_files = 'PDTSimpleCalendarDemo'
s.requires_arc = true

Expand Down
4 changes: 2 additions & 2 deletions PDTSimpleCalendar/Info.plist
Expand Up @@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.7.1</string>
<string>0.8.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<string>1</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
Expand Down
22 changes: 19 additions & 3 deletions README.md
Expand Up @@ -2,6 +2,7 @@ PDTSimpleCalendar
=================

[![Pod version](https://img.shields.io/cocoapods/v/PDTSimpleCalendar.svg?style=flat)](http://cocoadocs.org/docsets/PDTSimpleCalendar)
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
[![Build Status](https://img.shields.io/travis/jivesoftware/PDTSimpleCalendar.svg?style=flat)](https://travis-ci.org/jivesoftware/PDTSimpleCalendar)

PDTSimpleCalendar is a very simple calendar/date picker component for your iOS apps based on UICollectionView.
Expand All @@ -15,15 +16,30 @@ You should read the [Release Notes](https://github.com/jivesoftware/PDTSimpleCal

##Install

We recommend using Cocoapods, in your Podfile just add:
###Cocoapods

`pod 'PDTSimpleCalendar', '~> 0.7.0'`
in your `Podfile` just add:

`pod 'PDTSimpleCalendar', '~> 0.8.0'`

then run `pod install`

And finally in your project import `#import <PDTSimpleCalendar/PDTSimpleCalendar.h>`

If you don't like cocoapods, you can still import it using `git submodule` or simply copy/paste all the files in `PDTSimpleCalendar` to your project.
###Carthage

In your `Cartfile` simply add:

`github "jivesoftware/PDTSimpleCalendar" ~> 0.8.0`

run `carthage update`

Finally you need to add the built framework to your project. For more information about Carthage : [github.com/Carthage/Carthage](https://github.com/Carthage/Carthage)

**Warning**: Carthage uses dynamic framework and will only work if your app targets iOS 8.0 or later.

###Old-School
If you don't like cocoapods or Carthage or Cocoapods-Rome, you can still import it using `git submodule` or simply copy/paste all the source files in `PDTSimpleCalendar` to your project.


##Customize it
Expand Down
5 changes: 5 additions & 0 deletions RELEASENOTES.md
@@ -1,5 +1,10 @@
##PDTSimpleCalendar Release Notes

###0.8.0
Bug fixes and small improvements

Carthage compatible

###0.7.1

New delegate method to disable specific dates
Expand Down

0 comments on commit 203cb17

Please sign in to comment.