Skip to content

Commit 203cb17

Browse files
committed
Bump to 0.8.0
1 parent beb84eb commit 203cb17

4 files changed

Lines changed: 28 additions & 7 deletions

File tree

PDTSimpleCalendar.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "PDTSimpleCalendar"
4-
s.version = "0.7.1"
4+
s.version = "0.8.0"
55
s.summary = "A simple Calendar/Date Picker with a nice iOS7/iOS8 design."
66

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

PDTSimpleCalendar/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.7.1</string>
18+
<string>0.8.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>$(CURRENT_PROJECT_VERSION)</string>
22+
<string>1</string>
2323
<key>NSPrincipalClass</key>
2424
<string></string>
2525
</dict>

README.md

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ PDTSimpleCalendar
22
=================
33

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

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

1617
##Install
1718

18-
We recommend using Cocoapods, in your Podfile just add:
19+
###Cocoapods
1920

20-
`pod 'PDTSimpleCalendar', '~> 0.7.0'`
21+
in your `Podfile` just add:
22+
23+
`pod 'PDTSimpleCalendar', '~> 0.8.0'`
2124

2225
then run `pod install`
2326

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

26-
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.
29+
###Carthage
30+
31+
In your `Cartfile` simply add:
32+
33+
`github "jivesoftware/PDTSimpleCalendar" ~> 0.8.0`
34+
35+
run `carthage update`
36+
37+
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)
38+
39+
**Warning**: Carthage uses dynamic framework and will only work if your app targets iOS 8.0 or later.
40+
41+
###Old-School
42+
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.
2743

2844

2945
##Customize it

RELEASENOTES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
##PDTSimpleCalendar Release Notes
22

3+
###0.8.0
4+
Bug fixes and small improvements
5+
6+
Carthage compatible
7+
38
###0.7.1
49

510
New delegate method to disable specific dates

0 commit comments

Comments
 (0)