Skip to content

Commit

Permalink
Bumping version to 1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FabrizioBrancati committed Dec 26, 2017
1 parent 43cd179 commit 94addb1
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 5 deletions.
4 changes: 2 additions & 2 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.10.0"
s.version = "1.11.0"
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-objc.png"
Expand All @@ -13,7 +13,7 @@ Pod::Spec.new do |s|
s.platform = :ios, "7.0"
s.source = {
:git => "https://github.com/FabrizioBrancati/BFKit.git",
:tag => "v1.10.0"
:tag => "v1.11.0"
}
s.source_files = "Source/**/*.{h,m}"
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.10.0</string>
<string>1.11.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion BFKitDemo/BFKitDemo/BFKitDemo-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.10.0</string>
<string>1.11.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file.<br>
---

### 1.x Releases
- `1.11.x` Releases - [1.11.0](#1110)
- `1.10.x` Releases - [1.10.0](#1100)
- `1.9.x` Releases - [1.9.0](#190) | [1.9.1](#191) | [1.9.2](#192) | [1.9.3](#193)
- `1.8.x` Releases - [1.8.0](#180)
Expand All @@ -23,6 +24,15 @@ All notable changes to this project will be documented in this file.<br>

---

## [1.11.0](https://github.com/FabrizioBrancati/BFKit/releases/tag/v1.11.0)
### 26 Dec 2017
#### Added
- Added `isJailbroken` to UIDevice category to check if the device is Jailbroken [#33](https://github.com/FabrizioBrancati/BFKit/pull/33)
- Added missing devices [#33](https://github.com/FabrizioBrancati/BFKit/pull/29)

Thanks to [@Vanson](https://github.com/Vanson) for this release


## [1.10.0](https://github.com/FabrizioBrancati/BFKit/releases/tag/v1.10.0)
### 12 Jun 2017
#### Added
Expand Down
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,12 +197,26 @@ Installing and Usage
/usr/local/bin/carthage copy-frameworks
```

and add the paths to the BFKit framework under **Input Files**
Add the paths to the Queuer framework under **Input Files**

```sh
$(SRCROOT)/Carthage/Build/iOS/BFKit.framework
```

Add the paths to the copied frameworks to the **Output Files**

```sh
$(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/BFKit.framework
```

This script works around an [App Store submission bug](http://www.openradar.me/radar?id=6409498411401216) triggered by universal binaries and ensures that necessary bitcode-related files are copied when archiving
- **(Optional)** Add Build Phase with the following contents

```sh
/usr/local/bin/carthage outdated --xcode-warnings
```

To automatically warn you when one of your dependencies is out of date
- Import the Framework with ```import BFKit```
- Enjoy!

Expand Down

0 comments on commit 94addb1

Please sign in to comment.