Skip to content

Commit

Permalink
Allow dynamic binding on SPM
Browse files Browse the repository at this point in the history
  • Loading branch information
luizmb committed May 18, 2020
1 parent d1a97c5 commit b907662
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CombineRex.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'CombineRex'
s.version = '0.7.0'
s.version = '0.7.1'
s.summary = 'SwiftRex is a Redux implementation on top of Combine, RxSwift or ReactiveSwift. This package implements SwiftRex using RxSwift.'
s.description = <<-DESC
SwiftRex is a framework that combines event-sourcing pattern and reactive programming (Combine, RxSwift or ReactiveSwift), providing a central state Store of which your ViewControllers or SwiftUI Views can observe and react to, as well as dispatching events coming from the user interaction.
Expand Down
2 changes: 1 addition & 1 deletion Configuration/SwiftRex-Common.xcconfig
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SwiftRex Version
CURRENT_PROJECT_VERSION = 0.7.0
CURRENT_PROJECT_VERSION = 0.7.1

APPLICATION_EXTENSION_API_ONLY = YES
DYLIB_COMPATIBILITY_VERSION = $(CURRENT_PROJECT_VERSION)
Expand Down
3 changes: 2 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ let package = Package(
.watchOS(SupportedPlatform.WatchOSVersion.v6)
],
products: [
.library(name: "CombineRex", targets: ["SwiftRex", "CombineRex"])
.library(name: "CombineRex", targets: ["SwiftRex", "CombineRex"]),
.library(name: "CombineRexDynamic", type: .dynamic, targets: ["SwiftRex", "CombineRex"])
],
dependencies: [ ],
targets: [
Expand Down
2 changes: 1 addition & 1 deletion ReactiveSwiftRex.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ReactiveSwiftRex'
s.version = '0.7.0'
s.version = '0.7.1'
s.summary = 'SwiftRex is a Redux implementation on top of Combine, RxSwift or ReactiveSwift. This package implements SwiftRex using ReactiveSwift.'
s.description = <<-DESC
SwiftRex is a framework that combines event-sourcing pattern and reactive programming (Combine, RxSwift or ReactiveSwift), providing a central state Store of which your ViewControllers or SwiftUI Views can observe and react to, as well as dispatching events coming from the user interaction.
Expand Down
2 changes: 1 addition & 1 deletion RxSwiftRex.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'RxSwiftRex'
s.version = '0.7.0'
s.version = '0.7.1'
s.summary = 'SwiftRex is a Redux implementation on top of Combine, RxSwift or ReactiveSwift. This package implements SwiftRex using RxSwift.'
s.description = <<-DESC
SwiftRex is a framework that combines event-sourcing pattern and reactive programming (Combine, RxSwift or ReactiveSwift), providing a central state Store of which your ViewControllers or SwiftUI Views can observe and react to, as well as dispatching events coming from the user interaction.
Expand Down
2 changes: 1 addition & 1 deletion SwiftRex.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'SwiftRex'
s.version = '0.7.0'
s.version = '0.7.1'
s.summary = 'SwiftRex is a Redux implementation on top of Combine, RxSwift or ReactiveSwift'
s.description = <<-DESC
SwiftRex is a framework that combines event-sourcing pattern and reactive programming (Combine, RxSwift or ReactiveSwift), providing a central state Store of which your ViewControllers or SwiftUI Views can observe and react to, as well as dispatching events coming from the user interaction.
Expand Down

0 comments on commit b907662

Please sign in to comment.