Skip to content

Commit

Permalink
Fixing swift_version and bumping version to 6.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
FabrizioBrancati committed Oct 20, 2019
1 parent 3bec50f commit c8a6f15
Show file tree
Hide file tree
Showing 12 changed files with 23 additions and 16 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 = '6.0.0'
s.version = '6.0.1'
s.summary = 'BFKit-Swift is a collection of useful classes, structs and extensions to develop Apps faster.'
s.homepage = 'https://github.com/FabrizioBrancati/BFKit-Swift'
s.screenshots = 'https://github.fabriziobrancati.com/bfkit/resources/screenshot-swift.png'
Expand All @@ -11,7 +11,7 @@ Pod::Spec.new do |s|
s.source = { :git => 'https://github.com/FabrizioBrancati/BFKit-Swift.git', :tag => s.version }
s.documentation_url = 'https://github.fabriziobrancati.com/documentation/BFKit-Swift/'

s.swift_version = '5.0'
s.swift_version = '5.1'

s.ios.deployment_target = '8.0'
s.ios.source_files = 'Sources/**/*.swift'
Expand Down
8 changes: 4 additions & 4 deletions BFKit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1054,7 +1054,7 @@
CLANG_CXX_LIBRARY = "libc++";
CODE_SIGN_IDENTITY = "";
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 6.0.0;
CURRENT_PROJECT_VERSION = 6.0.1;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = "";
DYLIB_COMPATIBILITY_VERSION = 1;
Expand Down Expand Up @@ -1083,7 +1083,7 @@
CLANG_CXX_LIBRARY = "libc++";
CODE_SIGN_IDENTITY = "";
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 6.0.0;
CURRENT_PROJECT_VERSION = 6.0.1;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = "";
DYLIB_COMPATIBILITY_VERSION = 1;
Expand Down Expand Up @@ -1232,7 +1232,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 6.0.0;
CURRENT_PROJECT_VERSION = 6.0.1;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
Expand Down Expand Up @@ -1296,7 +1296,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 6.0.0;
CURRENT_PROJECT_VERSION = 6.0.1;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ All notable changes to this project will be documented in this file.<br>
---

### 6.x Releases
- `6.0.x` Releases - [6.0.0](#600---swift-51-support)
- `6.0.x` Releases - [6.0.0](#600---swift-51-support) | [6.0.1](#401---fixing-pod)

### 5.x Releases
- `5.0.x` Releases - [5.0.0](#500---swift-50-support)
Expand Down Expand Up @@ -45,6 +45,13 @@ All notable changes to this project will be documented in this file.<br>

---

## [6.0.1](https://github.com/FabrizioBrancati/BFKit-Swift/releases/tag/6.0.1) - Fixing Pod
### 20 Oct 2019
### Fixed
- Fixed `swift_version` in podspec file

---

## [6.0.0](https://github.com/FabrizioBrancati/BFKit-Swift/releases/tag/6.0.0) - Swift 5.1 Support
### 20 Oct 2019
### Added
Expand Down
2 changes: 1 addition & 1 deletion Example/BFKitExample/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>6.0.0</string>
<string>6.0.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ Requirements
| 4.1 | 9.3...9.4 | 3.1.2...3.2.1 | 8.0+ `*` | 10.10+ `*` | 3.0+ `*` | ![] |
| 4.2 | 10.0 | 4.0.0...4.1.0 | 8.0+ `*` | 10.10+ `*` | 3.0+ `*` | ![] |
| 5.0 | 10.2...10.3 | 5.0.0 | 8.0+ `*` | 10.10+ `*` | 3.0+ `*` | ![] |
| 5.1 | 11 | 6.0.0 | 8.0+ `*` | 10.10+ `*` | 3.0+ `*` | ![] |
| 5.1 | 11 | 6.0.0...6.0.1 | 8.0+ `*` | 10.10+ `*` | 3.0+ `*` | ![] |

> `*` With App Extension Support
Expand Down
2 changes: 1 addition & 1 deletion Sources/BFKit/Linux/BFKit/BFKit.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import Foundation
#endif

/// BFKit version string.
public let BFKitVersion = "6.0.0"
public let BFKitVersion = "6.0.1"

/// BFKit author string.
public let BFKitAuthor = "Fabrizio Brancati"
Expand Down
2 changes: 1 addition & 1 deletion Sources/Info-iOS.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>6.0.0</string>
<string>6.0.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Sources/Info-macOS.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>6.0.0</string>
<string>6.0.1</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSHumanReadableCopyright</key>
Expand Down
2 changes: 1 addition & 1 deletion Sources/Info-watchOS.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>6.0.0</string>
<string>6.0.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Tests/Info-iOS.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>6.0.0</string>
<string>6.0.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Tests/Info-macOS.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>6.0.0</string>
<string>6.0.1</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion jazzy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Creates documentation using Jazzy.

FRAMEWORK_VERSION=6.0.0
FRAMEWORK_VERSION=6.0.1

jazzy \
--clean \
Expand Down

0 comments on commit c8a6f15

Please sign in to comment.