diff --git a/CHANGELOG.md b/CHANGELOG.md index bc45d871d..4d693209d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # master *Please add new entries at the top.* +1. Fix the Carthage build checks (kudos to @mluisbrown) +1. Add dynamic library support for SPM (#886 kudos to @mluisbrown) + +# 7.2.0 +*Please add new entries at the top.* 1. Change `QueueScheduler` to use unspecified QoS when QoS parameter is defaulted (#880, kudos to @jamieQ) 1. Add support for visionOS (#875, kudos to @NachoSoto) diff --git a/Package.swift b/Package.swift index 8aa431c33..a9e5a39fa 100644 --- a/Package.swift +++ b/Package.swift @@ -8,6 +8,7 @@ let package = Package( ], products: [ .library(name: "ReactiveSwift", targets: ["ReactiveSwift"]), + .library(name: "ReactiveSwift-Dynamic", type: .dynamic, targets: ["ReactiveSwift"]) ], dependencies: [ .package(url: "https://github.com/Quick/Quick.git", from: "7.0.0"),