From ce9359e4ee931ac8188994f0c76b8ca4615ed717 Mon Sep 17 00:00:00 2001 From: Toomas Vahter Date: Fri, 7 Nov 2025 10:10:43 +0200 Subject: [PATCH 1/2] Remove the unnecessary header file --- Sources/StreamFeeds/StreamFeeds.h | 15 --------------- StreamFeeds.xcodeproj/project.pbxproj | 6 ------ 2 files changed, 21 deletions(-) delete mode 100644 Sources/StreamFeeds/StreamFeeds.h diff --git a/Sources/StreamFeeds/StreamFeeds.h b/Sources/StreamFeeds/StreamFeeds.h deleted file mode 100644 index fecbad4..0000000 --- a/Sources/StreamFeeds/StreamFeeds.h +++ /dev/null @@ -1,15 +0,0 @@ -// -// Copyright © 2025 Stream.io Inc. All rights reserved. -// - -#import - -//! Project version number for StreamFeeds. -FOUNDATION_EXPORT double StreamFeedsVersionNumber; - -//! Project version string for StreamFeeds. -FOUNDATION_EXPORT const unsigned char StreamFeedsVersionString[]; - -// In this header, you should import all the public headers of your framework using statements like #import - - diff --git a/StreamFeeds.xcodeproj/project.pbxproj b/StreamFeeds.xcodeproj/project.pbxproj index a39384b..f9c16fc 100644 --- a/StreamFeeds.xcodeproj/project.pbxproj +++ b/StreamFeeds.xcodeproj/project.pbxproj @@ -68,9 +68,6 @@ membershipExceptions = ( StreamFeeds/Info.plist, ); - publicHeaders = ( - StreamFeeds/StreamFeeds.h, - ); target = 845494E12DBA2E7C00211413 /* StreamFeeds */; }; /* End PBXFileSystemSynchronizedBuildFileExceptionSet section */ @@ -430,7 +427,6 @@ CODE_SIGN_IDENTITY = ""; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; @@ -513,7 +509,6 @@ CODE_SIGN_IDENTITY = ""; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; @@ -550,7 +545,6 @@ CODE_SIGN_IDENTITY = ""; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; From f595c18cbad22bf95557d5d4e6f2d4dd6f8a67a5 Mon Sep 17 00:00:00 2001 From: Toomas Vahter Date: Fri, 7 Nov 2025 14:34:40 +0200 Subject: [PATCH 2/2] Fix test target --- Tests/StreamFeedsTests/Docs/Snippets-03-01-Activities.swift | 1 + Tests/StreamFeedsTests/Docs/Snippets-03-03-FileUploads.swift | 1 + Tests/StreamFeedsTests/StateLayer/BookmarkList_Tests.swift | 1 + Tests/StreamFeedsTests/StateLayer/FeedList_Tests.swift | 1 + Tests/StreamFeedsTests/StateLayer/Feed_Tests.swift | 1 + 5 files changed, 5 insertions(+) diff --git a/Tests/StreamFeedsTests/Docs/Snippets-03-01-Activities.swift b/Tests/StreamFeedsTests/Docs/Snippets-03-01-Activities.swift index ca8f5e1..84e59b6 100644 --- a/Tests/StreamFeedsTests/Docs/Snippets-03-01-Activities.swift +++ b/Tests/StreamFeedsTests/Docs/Snippets-03-01-Activities.swift @@ -3,6 +3,7 @@ // import Combine +import Foundation import StreamCore import StreamFeeds diff --git a/Tests/StreamFeedsTests/Docs/Snippets-03-03-FileUploads.swift b/Tests/StreamFeedsTests/Docs/Snippets-03-03-FileUploads.swift index d918786..3882f4c 100644 --- a/Tests/StreamFeedsTests/Docs/Snippets-03-03-FileUploads.swift +++ b/Tests/StreamFeedsTests/Docs/Snippets-03-03-FileUploads.swift @@ -2,6 +2,7 @@ // Copyright © 2025 Stream.io Inc. All rights reserved. // +import Foundation import StreamCore import StreamFeeds diff --git a/Tests/StreamFeedsTests/StateLayer/BookmarkList_Tests.swift b/Tests/StreamFeedsTests/StateLayer/BookmarkList_Tests.swift index 618262f..89b886e 100644 --- a/Tests/StreamFeedsTests/StateLayer/BookmarkList_Tests.swift +++ b/Tests/StreamFeedsTests/StateLayer/BookmarkList_Tests.swift @@ -2,6 +2,7 @@ // Copyright © 2025 Stream.io Inc. All rights reserved. // +import Foundation import StreamCore @testable import StreamFeeds import Testing diff --git a/Tests/StreamFeedsTests/StateLayer/FeedList_Tests.swift b/Tests/StreamFeedsTests/StateLayer/FeedList_Tests.swift index 0e6b6d5..fa755e4 100644 --- a/Tests/StreamFeedsTests/StateLayer/FeedList_Tests.swift +++ b/Tests/StreamFeedsTests/StateLayer/FeedList_Tests.swift @@ -3,6 +3,7 @@ // import Combine +import Foundation import StreamCore @testable import StreamFeeds import Testing diff --git a/Tests/StreamFeedsTests/StateLayer/Feed_Tests.swift b/Tests/StreamFeedsTests/StateLayer/Feed_Tests.swift index 05d5ec3..2ace350 100644 --- a/Tests/StreamFeedsTests/StateLayer/Feed_Tests.swift +++ b/Tests/StreamFeedsTests/StateLayer/Feed_Tests.swift @@ -2,6 +2,7 @@ // Copyright © 2025 Stream.io Inc. All rights reserved. // +import Foundation import StreamCore @testable import StreamFeeds import Testing