Skip to content

Commit 8581f24

Browse files
authoredDec 16, 2024··
Add dynamic library support to Swift Package. (#886)
1 parent 83fb295 commit 8581f24

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed
 

‎CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# master
22
*Please add new entries at the top.*
3+
1. Fix the Carthage build checks (kudos to @mluisbrown)
4+
1. Add dynamic library support for SPM (#886 kudos to @mluisbrown)
5+
6+
# 7.2.0
7+
*Please add new entries at the top.*
38

49
1. Change `QueueScheduler` to use unspecified QoS when QoS parameter is defaulted (#880, kudos to @jamieQ)
510
1. Add support for visionOS (#875, kudos to @NachoSoto)

‎Package.swift

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ let package = Package(
88
],
99
products: [
1010
.library(name: "ReactiveSwift", targets: ["ReactiveSwift"]),
11+
.library(name: "ReactiveSwift-Dynamic", type: .dynamic, targets: ["ReactiveSwift"])
1112
],
1213
dependencies: [
1314
.package(url: "https://github.com/Quick/Quick.git", from: "7.0.0"),

0 commit comments

Comments
 (0)
Please sign in to comment.