Skip to content

Commit 129e393

Browse files
authored
Prep release for 1.1.0 (#148)
* Update README.md * Update SnapshotTesting.podspec
1 parent 296460a commit 129e393

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ If your data can be represented as an image, text, or data, you can write a snap
129129
If you use [Carthage](https://github.com/Carthage/Carthage), you can add the following dependency to your `Cartfile`:
130130

131131
``` ruby
132-
github "pointfreeco/swift-snapshot-testing" ~> 1.0
132+
github "pointfreeco/swift-snapshot-testing" ~> 1.1
133133
```
134134

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

148148
```ruby
149149
target 'MyAppTests' do
150-
pod 'SnapshotTesting', '~> 1.0'
150+
pod 'SnapshotTesting', '~> 1.1'
151151
end
152152
```
153153

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

158158
```swift
159159
dependencies: [
160-
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing.git", from: "1.0.0"),
160+
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing.git", from: "1.1.0"),
161161
]
162162
```
163163

SnapshotTesting.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "SnapshotTesting"
3-
s.version = "1.0.0"
3+
s.version = "1.1.0"
44
s.summary = "Tests that save and assert against reference data"
55

66
s.description = <<-DESC

0 commit comments

Comments
 (0)