Skip to content

Commit

Permalink
Update podspec Swift version
Browse files Browse the repository at this point in the history
  • Loading branch information
luizmb committed Sep 22, 2019
1 parent e7db2d9 commit 0541377
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -9,7 +9,7 @@
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-orange.svg)](https://github.com/Carthage/Carthage)
[![CocoaPods compatible](https://img.shields.io/cocoapods/v/SwiftRex.svg)](https://cocoapods.org/pods/SwiftRex)
[![Swift Package Manager compatible](https://img.shields.io/badge/Swift%20Package%20Manager-compatible-orange.svg)](https://github.com/apple/swift-package-manager)
![Swift](https://img.shields.io/badge/Swift-5.0-orange.svg)
![Swift](https://img.shields.io/badge/Swift-5.1-orange.svg)
[![Platform support](https://img.shields.io/badge/platform-iOS%20%7C%20watchOS%20%7C%20tvOS%20%7C%20macOS-252532.svg)](https://github.com/SwiftRex/SwiftRex)
[![License Apache 2.0](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/SwiftRex/SwiftRex/blob/master/LICENSE)

Expand Down Expand Up @@ -175,4 +175,4 @@ Given the current state and an action, returns the calculated state. This functi

It's important to understand that reducer is a synchronous operations that calculates a new state without any kind of side-effect, so never add properties to the `Reducer` structs or call any external function. If you are tempted to do that, please create a middleware. Reducers are also responsible for keeping the consistency of a state, so it's always good to do a final sanity check before changing the state.

Once the reducer function executes, the store will update its single source of truth with the new calculated state, and propagate it to all its observers.
Once the reducer function executes, the store will update its single source of truth with the new calculated state, and propagate it to all its observers.
2 changes: 1 addition & 1 deletion ReactiveSwiftRex.podspec
Expand Up @@ -20,7 +20,7 @@ Pod::Spec.new do |s|
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '3.0'
s.tvos.deployment_target = '9.0'
s.swift_version = '5.0'
s.swift_version = '5.1'

s.source_files = "Sources/ReactiveSwiftRex/**/*.swift"
s.dependency 'SwiftRex'
Expand Down
2 changes: 1 addition & 1 deletion RxSwiftRex.podspec
Expand Up @@ -20,7 +20,7 @@ Pod::Spec.new do |s|
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '3.0'
s.tvos.deployment_target = '9.0'
s.swift_version = '5.0'
s.swift_version = '5.1'

s.source_files = "Sources/RxSwiftRex/**/*.swift"
s.dependency 'SwiftRex'
Expand Down
2 changes: 1 addition & 1 deletion SwiftRex.podspec
Expand Up @@ -20,7 +20,7 @@ Pod::Spec.new do |s|
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '3.0'
s.tvos.deployment_target = '9.0'
s.swift_version = '5.0'
s.swift_version = '5.1'

s.source_files = "Sources/SwiftRex/**/*.swift"
s.framework = "Foundation"
Expand Down

0 comments on commit 0541377

Please sign in to comment.