Skip to content

Commit

Permalink
Bumping version to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FabrizioBrancati committed Jul 5, 2015
1 parent 59ea29c commit fd42fff
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 7 deletions.
4 changes: 2 additions & 2 deletions BFKit-Swift.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "BFKit-Swift"
s.module_name = "BFKit"
s.version = "1.1.0"
s.version = "1.2.0"
s.summary = "BFKit is a collection of useful classes to develop Apps faster"
s.homepage = "https://github.com/FabrizioBrancati/BFKit-Swift"
s.screenshots = "http://github.fabriziobrancati.com/bfkit/resources/screenshot-swift.png"
Expand All @@ -14,7 +14,7 @@ Pod::Spec.new do |s|
s.platform = :ios, "8.0"
s.source = {
:git => "https://github.com/FabrizioBrancati/BFKit-Swift.git",
:tag => "v1.1.0"
:tag => "v1.2.0"
}
s.source_files = "Source/**/*.{swift}"
s.resources = "Source/Languages/**"
Expand Down
2 changes: 1 addition & 1 deletion BFKit/BFKit/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.1.0</string>
<string>1.2.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
4 changes: 2 additions & 2 deletions BFKitDemo/BFKitDemo/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0.0</string>
<string>1.2.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>220</string>
<string>222</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIMainStoryboardFile</key>
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
Changelog
=========
###Version 1.2.0
- Added comments to all classes and extensions
- Added the documentation with [CocoaDocs](http://cocoadocs.org/docsets/BFKit-Swift/)
- Declared public ```colorForColorString``` in UIColor extension
- Declared as deprecated some functions in favor of default values

###Version 1.1.0
- Added Carthage support
- Added all IDs in BFSystemSound class
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,12 @@ Installing and Usage :computer:
- Enjoy!
- N.B.: You will no longer need to import BFKit since you are not actually loading a framework

---
###Warning
The following installing methods doesn't allows to declare ```Array``` and ```Dictionary``` extensions as public due to a bug in the compiler
[Read more](https://devforums.apple.com/message/983747)
---

####iOS 8 (or later) compatible
- Open the **BFKit** folder and build the Framework from the project
- Import BFKit.framework into your project
Expand Down Expand Up @@ -158,4 +164,4 @@ License :scroll:
================
BFKit-Swift is available under the MIT license. See the **[LICENSE](https://github.com/FabrizioBrancati/BFKit-Swift/blob/master/LICENSE)** file for more info.

[CocoaDocs]: http://cocoadocs.org/docsets/BFKit-Swift/1.1.0/
[CocoaDocs]: http://cocoadocs.org/docsets/BFKit-Swift/1.2.0/
2 changes: 1 addition & 1 deletion Source/BFKit.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import Foundation

/// BFKit version string
public let BFKIT_VERSION = "1.1.0"
public let BFKIT_VERSION = "1.2.0"

/// BFKit author string
public let BFKIT_AUTHOR = "Fabrizio Brancati"

0 comments on commit fd42fff

Please sign in to comment.