Skip to content

Commit 2ec944c

Browse files
committed
3.0.0
1 parent 99b0c21 commit 2ec944c

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# master
22
*Please add new entries at the top.*
33

4+
# 3.0.0
45
1. Code Coverage is reenabled. (#553)
56
For Carthage users, version 0.26.0 and later is required for building App Store compatible binaries.
67

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ If you use [Carthage][] to manage your dependencies, simply add
7272
ReactiveSwift to your `Cartfile`:
7373

7474
```
75-
github "ReactiveCocoa/ReactiveSwift" ~> 2.0
75+
github "ReactiveCocoa/ReactiveSwift" ~> 3.0
7676
```
7777

7878
If you use Carthage to build your dependencies, make sure you have added `ReactiveSwift.framework`, and `Result.framework` to the "_Linked Frameworks and Libraries_" section of your target, and have included them in your Carthage framework copying build phase.
@@ -83,7 +83,7 @@ If you use [CocoaPods][] to manage your dependencies, simply add
8383
ReactiveSwift to your `Podfile`:
8484

8585
```
86-
pod 'ReactiveSwift', '~> 2.0'
86+
pod 'ReactiveSwift', '~> 3.0'
8787
```
8888

8989
#### Swift Package Manager
@@ -92,7 +92,7 @@ If you use Swift Package Manager, simply add ReactiveSwift as a dependency
9292
of your package in `Package.swift`:
9393

9494
```
95-
.Package(url: "https://github.com/ReactiveCocoa/ReactiveSwift.git", majorVersion: 2)
95+
.Package(url: "https://github.com/ReactiveCocoa/ReactiveSwift.git", majorVersion: 3)
9696
```
9797

9898
#### Git submodule

ReactiveSwift.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "ReactiveSwift"
33
# Version goes here and will be used to access the git tag later on, once we have a first release.
4-
s.version = "3.0.0-rc.1"
4+
s.version = "3.0.0"
55
s.summary = "Streams of values over time"
66
s.description = <<-DESC
77
ReactiveSwift is a Swift framework inspired by Functional Reactive Programming. It provides APIs for composing and transforming streams of values over time.

0 commit comments

Comments
 (0)