From 203cb1702d32043131a3cf936721e9dd13c79a94 Mon Sep 17 00:00:00 2001 From: Jerome Miglino Date: Thu, 16 Jul 2015 09:47:37 -0400 Subject: [PATCH] Bump to 0.8.0 --- PDTSimpleCalendar.podspec | 4 ++-- PDTSimpleCalendar/Info.plist | 4 ++-- README.md | 22 +++++++++++++++++++--- RELEASENOTES.md | 5 +++++ 4 files changed, 28 insertions(+), 7 deletions(-) diff --git a/PDTSimpleCalendar.podspec b/PDTSimpleCalendar.podspec index e44ac17..6b40908 100644 --- a/PDTSimpleCalendar.podspec +++ b/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 @@ -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 diff --git a/PDTSimpleCalendar/Info.plist b/PDTSimpleCalendar/Info.plist index bc1d897..673a99e 100644 --- a/PDTSimpleCalendar/Info.plist +++ b/PDTSimpleCalendar/Info.plist @@ -15,11 +15,11 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.7.1 + 0.8.0 CFBundleSignature ???? CFBundleVersion - $(CURRENT_PROJECT_VERSION) + 1 NSPrincipalClass diff --git a/README.md b/README.md index d5ab151..3177d24 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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 ` -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 diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 5833179..77e1d21 100644 --- a/RELEASENOTES.md +++ b/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