Skip to content

Commit e25caba

Browse files
committed
1.4.0
1 parent 4a97f4b commit e25caba

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.swift-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
swift-5.0-DEVELOPMENT-SNAPSHOT-2019-03-10-a
1+
5.0

README.md

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

133133
``` ruby
134-
github "pointfreeco/swift-snapshot-testing" ~> 1.3
134+
github "pointfreeco/swift-snapshot-testing" ~> 1.4
135135
```
136136

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

150150
```ruby
151151
target 'MyAppTests' do
152-
pod 'SnapshotTesting', '~> 1.3'
152+
pod 'SnapshotTesting', '~> 1.4'
153153
end
154154
```
155155

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

160160
```swift
161161
dependencies: [
162-
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing.git", from: "1.3.0"),
162+
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing.git", from: "1.4.0"),
163163
]
164164
```
165165

SnapshotTesting.podspec

Lines changed: 2 additions & 2 deletions
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.3.0"
3+
s.version = "1.4.0"
44
s.summary = "Tests that save and assert against reference data"
55

66
s.description = <<-DESC
@@ -24,7 +24,7 @@ Pod::Spec.new do |s|
2424
:tag => s.version
2525
}
2626

27-
s.swift_version = "4.2"
27+
s.swift_version = "5.0"
2828

2929
s.ios.deployment_target = "10.0"
3030
s.osx.deployment_target = "10.10"

0 commit comments

Comments
 (0)