Skip to content

Commit cfb7c0c

Browse files
Bumping version to 4.1.0
1 parent c041867 commit cfb7c0c

File tree

12 files changed

+14
-20
lines changed

12 files changed

+14
-20
lines changed

BFKit-Swift.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = 'BFKit-Swift'
33
s.module_name = 'BFKit'
4-
s.version = '4.0.1'
4+
s.version = '4.1.0'
55
s.summary = 'BFKit-Swift is a collection of useful classes, structs and extensions to develop Apps faster.'
66
s.homepage = 'https://github.com/FabrizioBrancati/BFKit-Swift'
77
s.screenshots = 'https://github.fabriziobrancati.com/bfkit/resources/screenshot-swift.png'

BFKit.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1213,7 +1213,7 @@
12131213
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
12141214
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
12151215
COPY_PHASE_STRIP = NO;
1216-
CURRENT_PROJECT_VERSION = 4.0.1;
1216+
CURRENT_PROJECT_VERSION = 4.1.0;
12171217
DEBUG_INFORMATION_FORMAT = dwarf;
12181218
ENABLE_STRICT_OBJC_MSGSEND = YES;
12191219
ENABLE_TESTABILITY = YES;
@@ -1277,7 +1277,7 @@
12771277
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
12781278
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
12791279
COPY_PHASE_STRIP = NO;
1280-
CURRENT_PROJECT_VERSION = 4.0.1;
1280+
CURRENT_PROJECT_VERSION = 4.1.0;
12811281
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
12821282
ENABLE_NS_ASSERTIONS = NO;
12831283
ENABLE_STRICT_OBJC_MSGSEND = YES;

CHANGELOG.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file.<br>
99
---
1010

1111
### 4.x Releases
12+
- `4.1.x` Releases - [4.1.0](#410---spend-that-money)
1213
- `4.0.x` Releases - [4.0.0](#400---swift-42-support) | [4.0.1](#401---release-it-please)
1314

1415
### 3.x Releases
@@ -38,14 +39,7 @@ All notable changes to this project will be documented in this file.<br>
3839

3940
---
4041

41-
## [5.0.0](https://github.com/FabrizioBrancati/BFKit-Swift/releases/tag/5.0.0) - Swift 5.0 Support
42-
### XX XXX 2019
43-
### Added
44-
- Added support to Xcode 10.2 and Swift 5.0
45-
46-
---
47-
48-
## [4.1.0](https://github.com/FabrizioBrancati/BFKit-Swift/releases/tag/4.0.1) - Use That Money
42+
## [4.1.0](https://github.com/FabrizioBrancati/BFKit-Swift/releases/tag/4.1.0) - Spend That Money
4943
### 03 Feb 2019
5044
### Added
5145
- Added iPhone XS, iPhone XS Max and iPhone XR in UIDevice extension

Example/BFKitExample/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>4.0.1</string>
20+
<string>4.1.0</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ Requirements
120120
| 3.0...3.2 | 8.0...9.0 | 2.6.0 | 8.0+ | 10.10+ | 2.0+ | ![] |
121121
| 4.0 | 9.0...9.2 | 3.0.0...3.1.1 | 8.0+ `*` | 10.10+ `*` | 2.0+ `*` | ![] |
122122
| 4.1 | 9.3...9.4 | 3.1.2...3.2.1 | 8.0+ `*` | 10.10+ `*` | 2.0+ `*` | ![] |
123-
| 4.2 | 10.0 | 4.0.0...4.0.1 | 8.0+ `*` | 10.10+ `*` | 2.0+ `*` | ![] |
123+
| 4.2 | 10.0 | 4.0.0...4.1.0 | 8.0+ `*` | 10.10+ `*` | 2.0+ `*` | ![] |
124124

125125
> `*` With App Extension Support
126126

Sources/BFKit/Linux/BFKit/BFKit.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import Foundation
3232
#endif
3333

3434
/// BFKit version string.
35-
public let BFKitVersion = "4.0.1"
35+
public let BFKitVersion = "4.1.0"
3636

3737
/// BFKit author string.
3838
public let BFKitAuthor = "Fabrizio Brancati"

Sources/Info-iOS.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>4.0.1</string>
18+
<string>4.1.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Sources/Info-macOS.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>4.0.1</string>
18+
<string>4.1.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSHumanReadableCopyright</key>

Sources/Info-watchOS.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>4.0.1</string>
18+
<string>4.1.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Tests/Info-iOS.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>4.0.1</string>
18+
<string>4.1.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Tests/Info-macOS.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>4.0.1</string>
18+
<string>4.1.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>1</string>
2121
</dict>

jazzy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Creates documentation using Jazzy.
44

5-
FRAMEWORK_VERSION=4.0.1
5+
FRAMEWORK_VERSION=4.1.0
66

77
jazzy \
88
--clean \

0 commit comments

Comments
 (0)