Skip to content

Commit

Permalink
2.0.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
andersio committed Jun 27, 2017
1 parent 033fac9 commit 376c78a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# master
*Please add new entries at the top.*

# 2.0.0-rc.1
1. If the input observer of a `Signal` deinitializes while the `Signal` has not yet terminated, an `interrupted` event would now be automatically sent. (#463, kudos to @andersio)

1. `ValidationResult` and `ValidatorOutput` have been renamed to `ValidatingProperty.Result` and `ValidatingProperty.Decision`, respectively. (#443)
Expand Down
2 changes: 1 addition & 1 deletion ReactiveSwift.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "ReactiveSwift"
# Version goes here and will be used to access the git tag later on, once we have a first release.
s.version = "2.0.0-alpha.3"
s.version = "2.0.0-rc.1"
s.summary = "Streams of values over time"
s.description = <<-DESC
ReactiveSwift is a Swift framework inspired by Functional Reactive Programming. It provides APIs for composing and transforming streams of values over time.
Expand Down

5 comments on commit 376c78a

@andersio
Copy link
Member Author

@andersio andersio commented on 376c78a Jun 27, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ikesyo Please push to trunk. Btw, would you mind adding me to the pod owner list at [email protected] for both RAS and RAC, so that I don't need to bother you for releases?

@ikesyo
Copy link
Member

@ikesyo ikesyo commented on 376c78a Jun 27, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@andersio Done πŸš€ and added you as a pod owner πŸŽ‰

I normally add --swift-version=3.0 option to the command (for CocoaDocs).

pod trunk push --swift-version=3.0

@andersio
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ikesyo Should it be 3.1 since now we are requiring 3.1?

@ikesyo
Copy link
Member

@ikesyo ikesyo commented on 376c78a Jun 27, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, the value is for Xcode and not for swiftenv. SWIFT_VERSION=3.1 in Xcode is invalid.

@ikesyo
Copy link
Member

@ikesyo ikesyo commented on 376c78a Jun 27, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That may not be an issue anymore as @orta said: CocoaPods/cocoadocs.org#506 (comment)

But I didn't confirm if the message is correct, since the listed docs are deployed by me with --swift-version=3.0 option.

Please sign in to comment.