Skip to content

Commit

Permalink
Updated documentation for correct version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffh committed Jul 27, 2015
1 parent 6a74428 commit 210c7a0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions Documentation/InstallingQuick.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
> **If you're using Xcode 6.3 & Swift 1.2,** use Quick `v0.3.*`.
> New releases are developed on the `master` branch.
>
> **If you're using Xcode 7.0 & Swift 2.0,** use the latest version of Quick--`v0.5.0` at the time of writing.
> **If you're using Xcode 7.0 & Swift 2.0,** use the latest version of Quick--`v0.5.1` at the time of writing.
> New releases are developed on the `swift-2.0` branch.

Expand Down Expand Up @@ -102,12 +102,12 @@ use_frameworks!

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

# If you're using Xcode 6 / Swift 1.2
pod 'Quick', '0.3.0'
pod 'Nimble', '1.0.0'
pod 'Quick', '~> 0.3.0'
pod 'Nimble', '~> 1.0.0'
end

target 'MyTests' do
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ use_frameworks!

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

# If you're using Xcode 6 / Swift 1.2
pod 'Quick', '0.3.0'
pod 'Nimble', '1.0.0'
pod 'Quick', '~> 0.3.0'
pod 'Nimble', '~> 1.0.0'
end

target 'MyTests' do
Expand Down

0 comments on commit 210c7a0

Please sign in to comment.