Skip to content

Commit

Permalink
1.6.0 (#253)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephencelis authored Sep 25, 2019
1 parent f46f8c0 commit 35aac0f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ If your data can be represented as an image, text, or data, you can write a snap
If you use [Carthage](https://github.com/Carthage/Carthage), you can add the following dependency to your `Cartfile`:

``` ruby
github "pointfreeco/swift-snapshot-testing" ~> 1.5
github "pointfreeco/swift-snapshot-testing" ~> 1.6
```

> ⚠️ Warning: Carthage instructs you to drag frameworks into your Xcode project. Xcode may automatically attempt to link these frameworks to your app target. `SnapshotTesting.framework` is only compatible with test targets, so when you first add it to your project:
Expand All @@ -149,7 +149,7 @@ If your project uses [CocoaPods](https://cocoapods.org), add the pod to any appl

```ruby
target 'MyAppTests' do
pod 'SnapshotTesting', '~> 1.5'
pod 'SnapshotTesting', '~> 1.6'
end
```

Expand All @@ -159,7 +159,7 @@ If you want to use SnapshotTesting in a project that uses [SwiftPM](https://swif

```swift
dependencies: [
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing.git", from: "1.5.0"),
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing.git", from: "1.6.0"),
]
```

Expand Down
2 changes: 1 addition & 1 deletion SnapshotTesting.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SnapshotTesting"
s.version = "1.5.0"
s.version = "1.6.0"
s.summary = "Tests that save and assert against reference data"

s.description = <<-DESC
Expand Down

0 comments on commit 35aac0f

Please sign in to comment.