Skip to content

Commit

Permalink
Merge pull request #32 from erwald/release/1.1.0
Browse files Browse the repository at this point in the history
Release/1.1.0
  • Loading branch information
mdiep authored Jul 21, 2017
2 parents 9253284 + 8792366 commit a571d47
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ matrix:
env:
- JOB=CARTHAGE-watchOS
- script:
- pod repo update --silent
- pod repo update --verbose
- pod lib lint --allow-warnings
env:
- JOB=PODSPEC
Expand Down
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github "ReactiveCocoa/ReactiveObjC" ~> 3.0.0
github "ReactiveCocoa/ReactiveSwift" ~> 1.1
github "ReactiveCocoa/ReactiveSwift" ~> 1.1.5
2 changes: 1 addition & 1 deletion Cartfile.private
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
github "jspahrsummers/xcconfigs" "3d9d996"
github "Quick/Quick" ~> 1.1
github "Quick/Nimble" "8116a83864ee78339798c3ef425c42f6ca6bf034"
github "Quick/Nimble" ~> 7.0.1
6 changes: 3 additions & 3 deletions Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
github "Quick/Nimble" "8116a83864ee78339798c3ef425c42f6ca6bf034"
github "Quick/Nimble" "v7.0.1"
github "Quick/Quick" "v1.1.0"
github "ReactiveCocoa/ReactiveObjC" "3.0.0"
github "antitypical/Result" "3.2.1"
github "antitypical/Result" "3.2.3"
github "jspahrsummers/xcconfigs" "3d9d99634cae6d586e272543d527681283b33eb0"
github "ReactiveCocoa/ReactiveSwift" "1.1.2"
github "ReactiveCocoa/ReactiveSwift" "1.1.5"
2 changes: 1 addition & 1 deletion Carthage/Checkouts/Nimble
Submodule Nimble updated 91 files
+3 −0 .swiftlint.yml
+1 −1 .travis.yml
+3 −0 Dockerfile.test
+7 −5 Nimble.podspec
+224 −106 Nimble.xcodeproj/project.pbxproj
+1 −1 Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-iOS.xcscheme
+1 −1 Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-macOS.xcscheme
+1 −1 Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-tvOS.xcscheme
+5 −3 Package.swift
+490 −178 README.md
+0 −3 Sources/Lib/CwlPreconditionTesting/CwlCatchException/.gitignore
+0 −0 Sources/Lib/CwlPreconditionTesting/CwlCatchException/CwlCatchException.swift
+0 −28 Sources/Lib/CwlPreconditionTesting/CwlCatchException/CwlCatchException/Info.plist
+0 −0 Sources/Lib/CwlPreconditionTesting/CwlCatchExceptionSupport/CwlCatchException.m
+0 −0 Sources/Lib/CwlPreconditionTesting/CwlCatchExceptionSupport/include/CwlCatchException.h
+2 −1 Sources/Lib/CwlPreconditionTesting/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m
+0 −5 Sources/Lib/CwlPreconditionTesting/CwlMachBadInstructionHandler/include/CwlMachBadInstructionHandler.h
+2 −2 Sources/Lib/CwlPreconditionTesting/CwlMachBadInstructionHandler/mach_excServer.c
+0 −0 Sources/Lib/CwlPreconditionTesting/CwlMachBadInstructionHandler/mach_excServer.h
+11 −11 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlBadInstructionException.swift
+24 −23 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlCatchBadInstruction.swift
+14 −17 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlCatchBadInstructionPOSIX.swift
+5 −5 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/CwlDarwinDefinitions.swift
+0 −25 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/Info.plist
+30 −0 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/Mach/CwlPreconditionTesting.h
+27 −0 Sources/Lib/CwlPreconditionTesting/CwlPreconditionTesting/Posix/CwlPreconditionTesting.h
+80 −28 Sources/Nimble/Adapters/NMBExpectation.swift
+1 −1 Sources/Nimble/Adapters/NimbleEnvironment.swift
+1 −1 Sources/Nimble/DSL+Wait.swift
+65 −5 Sources/Nimble/Expectation.swift
+261 −0 Sources/Nimble/ExpectationMessage.swift
+27 −0 Sources/Nimble/FailureMessage.swift
+74 −48 Sources/Nimble/Matchers/AllPass.swift
+89 −4 Sources/Nimble/Matchers/AsyncMatcherWrapper.swift
+38 −18 Sources/Nimble/Matchers/BeAKindOf.swift
+27 −21 Sources/Nimble/Matchers/BeAnInstanceOf.swift
+23 −19 Sources/Nimble/Matchers/BeCloseTo.swift
+34 −33 Sources/Nimble/Matchers/BeEmpty.swift
+8 −8 Sources/Nimble/Matchers/BeGreaterThan.swift
+6 −6 Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift
+4 −4 Sources/Nimble/Matchers/BeIdenticalTo.swift
+6 −6 Sources/Nimble/Matchers/BeLessThan.swift
+6 −6 Sources/Nimble/Matchers/BeLessThanOrEqual.swift
+19 −25 Sources/Nimble/Matchers/BeLogical.swift
+3 −4 Sources/Nimble/Matchers/BeNil.swift
+2 −2 Sources/Nimble/Matchers/BeVoid.swift
+15 −18 Sources/Nimble/Matchers/BeginWith.swift
+16 −16 Sources/Nimble/Matchers/Contain.swift
+4 −4 Sources/Nimble/Matchers/ContainElementSatisfying.swift
+10 −10 Sources/Nimble/Matchers/EndWith.swift
+83 −44 Sources/Nimble/Matchers/Equal.swift
+5 −5 Sources/Nimble/Matchers/HaveCount.swift
+3 −3 Sources/Nimble/Matchers/Match.swift
+35 −8 Sources/Nimble/Matchers/MatchError.swift
+19 −3 Sources/Nimble/Matchers/MatcherFunc.swift
+17 −0 Sources/Nimble/Matchers/MatcherProtocols.swift
+3 −3 Sources/Nimble/Matchers/PostNotification.swift
+348 −0 Sources/Nimble/Matchers/Predicate.swift
+3 −3 Sources/Nimble/Matchers/RaisesException.swift
+73 −28 Sources/Nimble/Matchers/SatisfyAnyOf.swift
+2 −2 Sources/Nimble/Matchers/ThrowAssertion.swift
+211 −24 Sources/Nimble/Matchers/ThrowError.swift
+37 −0 Sources/Nimble/Matchers/ToSucceed.swift
+1 −6 Sources/Nimble/Nimble.h
+16 −17 Sources/Nimble/Utils/Async.swift
+3 −85 Sources/Nimble/Utils/Errors.swift
+2 −0 Sources/NimbleObjectiveC/DSL.h
+1 −1 Sources/NimbleObjectiveC/NMBStringify.h
+7 −9 Tests/NimbleTests/AsynchronousTest.swift
+11 −11 Tests/NimbleTests/Helpers/utils.swift
+2 −2 Tests/NimbleTests/Matchers/BeAnInstanceOfTest.swift
+14 −14 Tests/NimbleTests/Matchers/BeCloseToTest.swift
+4 −0 Tests/NimbleTests/Matchers/BeGreaterThanOrEqualToTest.swift
+3 −0 Tests/NimbleTests/Matchers/BeGreaterThanTest.swift
+3 −3 Tests/NimbleTests/Matchers/BeIdenticalToTest.swift
+4 −4 Tests/NimbleTests/Matchers/ContainTest.swift
+4 −2 Tests/NimbleTests/Matchers/EqualTest.swift
+1 −0 Tests/NimbleTests/Matchers/MatchErrorTest.swift
+1 −0 Tests/NimbleTests/Matchers/ThrowErrorTest.swift
+36 −0 Tests/NimbleTests/Matchers/ToSucceedTest.swift
+2 −2 Tests/NimbleTests/SynchronousTests.swift
+7 −7 Tests/NimbleTests/objc/ObjCAllPassTest.m
+4 −4 Tests/NimbleTests/objc/ObjCBeEmptyTest.m
+2 −0 Tests/NimbleTests/objc/ObjCBeGreaterThanOrEqualToTest.m
+5 −4 Tests/NimbleTests/objc/ObjCBeGreaterThanTest.m
+4 −4 Tests/NimbleTests/objc/ObjCBeLessThanTest.m
+2 −2 Tests/NimbleTests/objc/ObjCContainTest.m
+2 −2 Tests/NimbleTests/objc/ObjCEqualTest.m
+1 −1 Tests/NimbleTests/objc/ObjCRaiseExceptionTest.m
+2 −1 script/release
+23 −9 test
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# ReactiveObjCBridge

After announced Swift, ReactiveCocoa was rewritten in Swift. This framework
creates a bridge between those Swift and Objective-C APIs ([ReactiveSwift][]
and [ReactiveObjC][]).
After the announcement of Swift, ReactiveCocoa was rewritten in Swift. This framework
creates a bridge between those Swift and Objective-C APIs (now known as [ReactiveSwift][]
and [ReactiveObjC][] respectively).

Because the APIs are based on fundamentally different designs, the conversion is
not always one-to-one; however, every attempt has been made to faithfully
Expand Down
6 changes: 3 additions & 3 deletions ReactiveObjCBridge.podspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Pod::Spec.new do |s|
s.name = "ReactiveObjCBridge"
s.version = "1.0.2"
s.version = "1.1.0"
s.summary = "Bridge between ReactiveObjC and ReactiveSwift"
s.description = <<-DESC
After announced Swift, ReactiveCocoa was rewritten in Swift. This framework creates a bridge between those Swift and Objective-C APIs (ReactiveSwift and ReactiveObjC).
After the announcement of Swift, ReactiveCocoa was rewritten in Swift. This framework creates a bridge between those Swift and Objective-C APIs (now known as ReactiveSwift and ReactiveObjC respectively).
Because the APIs are based on fundamentally different designs, the conversion is not always one-to-one; however, every attempt has been made to faithfully translate the concepts between the two APIs (and languages).
DESC
Expand All @@ -20,7 +20,7 @@ Pod::Spec.new do |s|
s.source_files = "ReactiveObjCBridge/*.{swift}"

s.dependency 'ReactiveObjC', '~> 3.0.0'
s.dependency 'ReactiveSwift', '~> 1.1'
s.dependency 'ReactiveSwift', '~> 1.1.5'

s.pod_target_xcconfig = { "OTHER_SWIFT_FLAGS[config=Release]" => "-suppress-warnings" }
end
2 changes: 1 addition & 1 deletion ReactiveObjCBridge/Info.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.1</string>
<string>1.1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit a571d47

Please sign in to comment.