Skip to content

Commit 210c7a0

Browse files
committed
Updated documentation for correct version numbers
1 parent 6a74428 commit 210c7a0

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

Documentation/InstallingQuick.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
> **If you're using Xcode 6.3 & Swift 1.2,** use Quick `v0.3.*`.
77
> New releases are developed on the `master` branch.
88
>
9-
> **If you're using Xcode 7.0 & Swift 2.0,** use the latest version of Quick--`v0.5.0` at the time of writing.
9+
> **If you're using Xcode 7.0 & Swift 2.0,** use the latest version of Quick--`v0.5.1` at the time of writing.
1010
> New releases are developed on the `swift-2.0` branch.
1111
1212

@@ -102,12 +102,12 @@ use_frameworks!
102102

103103
def testing_pods
104104
# If you're using Xcode 7 / Swift 2
105-
pod 'Quick', '0.5.0'
106-
pod 'Nimble', '2.0.0-rc.1'
105+
pod 'Quick', '~> 0.5.0'
106+
pod 'Nimble', '2.0.0-rc.2'
107107

108108
# If you're using Xcode 6 / Swift 1.2
109-
pod 'Quick', '0.3.0'
110-
pod 'Nimble', '1.0.0'
109+
pod 'Quick', '~> 0.3.0'
110+
pod 'Nimble', '~> 1.0.0'
111111
end
112112

113113
target 'MyTests' do

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ use_frameworks!
4444

4545
def testing_pods
4646
# If you're using Xcode 7 / Swift 2
47-
pod 'Quick', '0.5.0'
48-
pod 'Nimble', '2.0.0-rc.1'
47+
pod 'Quick', '~> 0.5.0'
48+
pod 'Nimble', '2.0.0-rc.2'
4949

5050
# If you're using Xcode 6 / Swift 1.2
51-
pod 'Quick', '0.3.0'
52-
pod 'Nimble', '1.0.0'
51+
pod 'Quick', '~> 0.3.0'
52+
pod 'Nimble', '~> 1.0.0'
5353
end
5454

5555
target 'MyTests' do

0 commit comments

Comments
 (0)