Skip to content

Commit

Permalink
Prep release for 1.1.0 (#148)
Browse files Browse the repository at this point in the history
* Update README.md

* Update SnapshotTesting.podspec
  • Loading branch information
stephencelis authored Dec 18, 2018
1 parent 296460a commit 129e393
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 @@ -129,7 +129,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.0
github "pointfreeco/swift-snapshot-testing" ~> 1.1
```

> ⚠️ 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 @@ -147,7 +147,7 @@ If your project uses [CocoaPods](https://cocoapods.org), add the pod to any appl

```ruby
target 'MyAppTests' do
pod 'SnapshotTesting', '~> 1.0'
pod 'SnapshotTesting', '~> 1.1'
end
```

Expand All @@ -157,7 +157,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.0.0"),
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing.git", from: "1.1.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.0.0"
s.version = "1.1.0"
s.summary = "Tests that save and assert against reference data"

s.description = <<-DESC
Expand Down

0 comments on commit 129e393

Please sign in to comment.