Skip to content

Commit

Permalink
Xcode 10 compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
kzaher committed Sep 21, 2018
1 parent 6410999 commit 0e92ed0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,13 @@ os:
language: generic
sudo: required
dist: trusty
osx_image: xcode9
osx_image: xcode10
env:
- BUILD="pushd Examples && ./dependencies.sh && set -o pipefail && (xcodebuild -project Examples.xcodeproj -scheme Example -destination 'platform=iOS Simulator,name=iPhone 7' build) | xcpretty"
- BUILD="pod repo update && pod lib lint RxFeedback.podspec --verbose"
- BUILD="gem install cocoapods --pre --no-rdoc --no-ri --no-document --quiet && pod repo update && pod lib lint RxFeedback.podspec --verbose"
- BUILD="swift build"
- BUILD="carthage update --platform ios && carthage build --no-skip-current --platform iOS && set -o pipefail && (xcodebuild -project RxFeedback.xcodeproj -scheme RxFeedbackTests -destination 'platform=iOS Simulator,name=iPhone 7' test) | xcpretty"
- BUILD="carthage update --platform tvOS && carthage build --no-skip-current --platform tvOS"
- BUILD="swift test"

script: eval "${BUILD}"

Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
## Master

- Rename `Event` to `Mutation`.
## [1.1.0](https://github.com/kzaher/RxFeedback/releases/tag/1.1.0)

* Xcode 10 compatbility
* Renames `Event` to `Mutation`.

## [1.0.2](https://github.com/kzaher/RxFeedback/releases/tag/1.0.3)

Expand Down
2 changes: 1 addition & 1 deletion RxFeedback.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RxFeedback"
s.version = "1.0.3"
s.version = "1.1.0"
s.summary = "Simplest architecture for RxSwift. State + feedback loops."
s.description = <<-DESC
Simplest architecture for RxSwift. State + feedback loops.
Expand Down
2 changes: 1 addition & 1 deletion Sources/RxFeedback/RxFeedback.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0.2</string>
<string>1.1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 0e92ed0

Please sign in to comment.