Skip to content

Commit

Permalink
Merge pull request #123 from iZettle/update-build-settings
Browse files Browse the repository at this point in the history
Specify type of the library for `spm` builds
  • Loading branch information
bartszczepaniak authored Aug 9, 2022
2 parents ad38c73 + 7acb280 commit c397d07
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 1.10.2
- Specify type of the library for `spm` builds as `dynamic`

# 1.10.1

- Xcode 13.2 compatibility
Expand Down
4 changes: 2 additions & 2 deletions Flow.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,7 @@
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
LIBRARY_SEARCH_PATHS = "$(inherited)";
MACOSX_DEPLOYMENT_TARGET = 10.11;
MARKETING_VERSION = 1.10.1;
MARKETING_VERSION = 1.10.2;
OTHER_SWIFT_FLAGS = "-Xfrontend -warn-long-function-bodies=300 -Xfrontend -warn-long-expression-type-checking=300";
PRODUCT_BUNDLE_IDENTIFIER = com.iZettle.Flow;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down Expand Up @@ -701,7 +701,7 @@
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
LIBRARY_SEARCH_PATHS = "$(inherited)";
MACOSX_DEPLOYMENT_TARGET = 10.11;
MARKETING_VERSION = 1.10.1;
MARKETING_VERSION = 1.10.2;
OTHER_SWIFT_FLAGS = "-Xfrontend -warn-long-function-bodies=300 -Xfrontend -warn-long-expression-type-checking=300";
PRODUCT_BUNDLE_IDENTIFIER = com.iZettle.Flow;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
2 changes: 1 addition & 1 deletion FlowFramework.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "FlowFramework"
s.version = "1.10.1"
s.version = "1.10.2"
s.module_name = "Flow"
s.summary = "Working with asynchronous flows"
s.description = <<-DESC
Expand Down
1 change: 1 addition & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ let package = Package(
products: [
.library(
name: "Flow",
type: .dynamic,
targets: ["Flow"]),
],
targets: [
Expand Down

0 comments on commit c397d07

Please sign in to comment.