Skip to content

Commit

Permalink
Merge pull request #161 from nathantannar4/fixSPMWarnings
Browse files Browse the repository at this point in the history
Fix SPM warnings on XCode 12, prepare release 5.2.1
  • Loading branch information
Kaspik authored Oct 5, 2020
2 parents 5a9c944 + 0c7f134 commit d48dc9e
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 20 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Changelog
- 5.2.1
- Fix SPM warnings about Info.plist file
- 5.2.0
- Drop support for iOS 11 and bump minimum version to iOS 12+
- Support Swift 5.3 and higher for XCode 12
Expand Down
2 changes: 1 addition & 1 deletion InputBarAccessoryView.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Pod::Spec.new do |s|
s.swift_versions = '5.3'

# 2 - Version
s.version = "5.2.0"
s.version = "5.2.1"

# 3 - License
s.license = { :type => "MIT", :file => "LICENSE" }
Expand Down
14 changes: 7 additions & 7 deletions InputBarAccessoryView.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
38F0C1EC20C77FA000FF8DD3 /* Models */,
3876DA8C1F8352F800C89326 /* Plugins */,
38C867741F50A6AD00811974 /* Protocols */,
38C867761F50A6AD00811974 /* Supporting Files */,
38C867761F50A6AD00811974 /* Supporting */,
38ECDBBB219B46B90076E154 /* ViewControllers */,
38C867791F50A6AD00811974 /* Views */,
);
Expand Down Expand Up @@ -191,14 +191,14 @@
path = Protocols;
sourceTree = "<group>";
};
38C867761F50A6AD00811974 /* Supporting Files */ = {
38C867761F50A6AD00811974 /* Supporting */ = {
isa = PBXGroup;
children = (
38C867771F50A6AD00811974 /* Info.plist */,
38F0C1FA20C8971500FF8DD3 /* InputBarAccessoryView+Availability.swift */,
38C867781F50A6AD00811974 /* InputBarAccessoryView-Bridging-Header.h */,
);
path = "Supporting Files";
path = Supporting;
sourceTree = "<group>";
};
38C867791F50A6AD00811974 /* Views */ = {
Expand Down Expand Up @@ -583,10 +583,10 @@
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = "$(SRCROOT)/Sources/Supporting Files/Info.plist";
INFOPLIST_FILE = "$(SRCROOT)/Sources/Supporting/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 5.2.0;
MARKETING_VERSION = 5.2.1;
PRODUCT_BUNDLE_IDENTIFIER = me.nathantannar.InputBarAccessoryView;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand All @@ -606,10 +606,10 @@
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = "$(SRCROOT)/Sources/Supporting Files/Info.plist";
INFOPLIST_FILE = "$(SRCROOT)/Sources/Supporting/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 5.2.0;
MARKETING_VERSION = 5.2.1;
PRODUCT_BUNDLE_IDENTIFIER = me.nathantannar.InputBarAccessoryView;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand Down
25 changes: 13 additions & 12 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,19 @@
import PackageDescription

let package = Package(
name: "InputBarAccessoryView",
platforms: [.iOS(.v11)],
products: [
.library(
name: "InputBarAccessoryView",
platforms: [.iOS(.v11)],
products: [
.library(
name: "InputBarAccessoryView",
targets: ["InputBarAccessoryView"])
],
targets: [
.target(
name: "InputBarAccessoryView",
path: "Sources"
)
],
swiftLanguageVersions: [.v5]
],
targets: [
.target(
name: "InputBarAccessoryView",
path: "Sources",
exclude: ["Supporting/Info.plist"]
)
],
swiftLanguageVersions: [.v5]
)
File renamed without changes.

0 comments on commit d48dc9e

Please sign in to comment.