This repository has been archived by the owner on Oct 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release-candidate' into stable
- Loading branch information
Showing
20 changed files
with
1,449 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
module: MaterialMotionObservable | ||
module: IndefiniteObservable | ||
module_version: 1.0.0 | ||
sdk: iphonesimulator | ||
xcodebuild_arguments: | ||
- -workspace | ||
- MaterialMotionObservable.xcworkspace | ||
- IndefiniteObservable.xcworkspace | ||
- -scheme | ||
- MaterialMotionObservable | ||
github_url: https://github.com/material-motion/observable-swift | ||
github_file_prefix: https://github.com/material-motion/observable-swift/tree/v1.0.0 | ||
- IndefiniteObservable | ||
github_url: https://github.com/material-motion/indefinite-observable-swift | ||
github_file_prefix: https://github.com/material-motion/indefinite-observable-swift/tree/v1.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# 1.0.0 | ||
|
||
Stable release of `IndefiniteObservable`. | ||
|
||
## Source changes | ||
|
||
* [Fix outdated reference in header docs.](https://github.com/material-motion/indefinite-observable-swift/commit/4f3b48a12f1e2a57d1b251db0c6a8a46f58e5e41) (Jeff Verkoeyen) | ||
* [Initial commit of IndefiniteObservable.](https://github.com/material-motion/indefinite-observable-swift/commit/f64ea2a587f03ac898198710347f65c78788fb26) (Jeff Verkoeyen) | ||
|
||
## API changes | ||
|
||
Auto-generated by running: | ||
|
||
apidiff origin/stable release-candidate swift IndefiniteObservable.xcworkspace IndefiniteObservable | ||
|
||
## Subscription | ||
|
||
*new* method: `unsubscribe()` in `Subscription` | ||
|
||
*new* protocol: `Subscription` | ||
|
||
## noUnsubscription | ||
|
||
*new* global var: `noUnsubscription` | ||
|
||
## Observer | ||
|
||
*new* protocol: `Observer` | ||
|
||
*new* method: `next(_:)` in `Observer` | ||
|
||
## AnyObserver | ||
|
||
*new* class: `AnyObserver` | ||
|
||
*new* method: `next(_:)` in `AnyObserver` | ||
|
||
## IndefiniteObservable | ||
|
||
*new* method: `init(_:)` in `IndefiniteObservable` | ||
|
||
*new* method: `subscribe(next:)` in `IndefiniteObservable` | ||
|
||
*new* class: `IndefiniteObservable` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "IndefiniteObservable" | ||
s.summary = "IndefiniteObservable.swift" | ||
s.version = "1.0.0" | ||
s.authors = "The Material Motion Authors" | ||
s.license = "Apache 2.0" | ||
s.homepage = "https://github.com/material-motion/indefinite-observable-swift" | ||
s.source = { :git => "https://github.com/material-motion/indefinite-observable-swift.git", :tag => "v" + s.version.to_s } | ||
s.ios.deployment_target = '8.0' | ||
s.osx.deployment_target = '10.9' | ||
s.requires_arc = true | ||
s.default_subspec = "lib" | ||
|
||
s.subspec "lib" do |ss| | ||
ss.source_files = "src/*.{swift}", "src/private/*.{swift}" | ||
end | ||
|
||
s.subspec "examples" do |ss| | ||
ss.ios.source_files = "examples/*.{swift}", "examples/supplemental/*.{swift}" | ||
ss.ios.exclude_files = "examples/TableOfContents.swift" | ||
#ss.resources = "examples/supplemental/*.{xcassets}" | ||
ss.dependency "IndefiniteObservable/lib" | ||
end | ||
|
||
#s.subspec "tests" do |ss| | ||
# ss.source_files = "tests/src/*.{swift}", "tests/src/private/*.{swift}" | ||
# ss.dependency "IndefiniteObservable/lib" | ||
#end | ||
end |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
PODS: | ||
- CatalogByConvention (2.0.0) | ||
- IndefiniteObservable/examples (1.0.0): | ||
- IndefiniteObservable/lib | ||
- IndefiniteObservable/lib (1.0.0) | ||
|
||
DEPENDENCIES: | ||
- CatalogByConvention | ||
- IndefiniteObservable/examples (from `./`) | ||
- IndefiniteObservable/lib (from `./`) | ||
|
||
EXTERNAL SOURCES: | ||
IndefiniteObservable: | ||
:path: "./" | ||
|
||
SPEC CHECKSUMS: | ||
CatalogByConvention: be55c2263132e4f9f59299ac8a528ee8715b3275 | ||
IndefiniteObservable: b90809f2fa025e37124c14681192bc441b128625 | ||
|
||
PODFILE CHECKSUM: 3e4cdba95901e07a289159f0c5a8b830ecb1a5c8 | ||
|
||
COCOAPODS: 1.1.1 |
Oops, something went wrong.