Skip to content

Commit

Permalink
Bumping version to 1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
FabrizioBrancati committed Jun 23, 2015
1 parent 56d84d4 commit 6b3028e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
10 changes: 4 additions & 6 deletions BFKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "BFKit"
s.version = "1.6.1"
s.version = "1.6.2"
s.summary = "BFKit is a collection of useful classes to develop Apps faster"
s.homepage = "https://github.com/FabrizioBrancati/BFKit"
s.screenshots = "http://github.fabriziobrancati.com/bfkit/resources/screenshot.png"
Expand All @@ -13,13 +13,11 @@ Pod::Spec.new do |s|
s.platform = :ios, "7.0"
s.source = {
:git => "https://github.com/FabrizioBrancati/BFKit.git",
:tag => "v1.6.1"
:tag => "v1.6.2"
}
s.prefix_header_contents = '#import <BFKit.h>'
s.source_files = "BFKit/**/*.{h,m}"
s.public_header_files = "BFKit/BFKit.h"
s.source_files = "BFKit/BFKit.h"
s.resources = "BFKit/Languages/**"
s.frameworks = "Foundation", "UIKit", "CoreGraphics", "AudioToolbox", "CoreImage", "Accelerate", "QuartzCore"
s.frameworks = "Foundation", "UIKit", "CoreGraphics", "AudioToolbox", "CoreImage", "Accelerate", "QuartzCore"
s.weak_frameworks = 'LocalAuthentication'
s.requires_arc = true
end
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Changelog
=========
###Version 1.6.2
- Fixed a problem with CocoaPods & CocoaDocs

###Version 1.6.1
- In NSString category the method ```allFamilyAndFonts``` now return an NSDictionary with all the family font names

Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Build Status](https://travis-ci.org/FabrizioBrancati/BFKit.svg?branch=master)](https://travis-ci.org/FabrizioBrancati/BFKit)
[![Issues](https://img.shields.io/github/issues/FabrizioBrancati/BFKit.svg?style=flat)](https://github.com/FabrizioBrancati/BFKit/issues)
[![Version](https://img.shields.io/cocoapods/v/BFKit.svg?style=flat)](http://cocoadocs.org/docsets/BFKit)
[![Platform](https://img.shields.io/badge/platform-iOS-orange.svg)](http://cocoadocs.org/docsets/BFKit)
[![Platform](https://img.shields.io/badge/platform-iOS-000000.svg)](http://cocoadocs.org/docsets/BFKit)
[![Language](https://img.shields.io/badge/language-Objective--C-blue.svg)](https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/ProgrammingWithObjectiveC/Introduction/Introduction.html)
[![License](https://img.shields.io/badge/license-MIT%20License-lightgrey.svg)](https://github.com/FabrizioBrancati/BFKit/blob/master/LICENSE)

Expand Down Expand Up @@ -92,6 +92,7 @@ Please make sure to follow my general coding style for new features!
Installing and Usage :computer:
===============================
###Pod
####Newbie version
- Create a **Podfile** in your **project directory**
- Write:
```ruby
Expand All @@ -104,6 +105,12 @@ Installing and Usage :computer:
```bash
pod install
```
- Import the file "**BFKit.h**"
- Enjoy!

####Pro version
- ```pod 'BFKit'```
- Import the file "**BFKit.h**"
- Enjoy!

###Manual
Expand Down

0 comments on commit 6b3028e

Please sign in to comment.