From e25caba146280f7c5cb098202f6d04a9a7f8c760 Mon Sep 17 00:00:00 2001 From: Stephen Celis Date: Tue, 26 Mar 2019 13:39:59 -0400 Subject: [PATCH] 1.4.0 --- .swift-version | 2 +- README.md | 6 +++--- SnapshotTesting.podspec | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.swift-version b/.swift-version index 84702b375..819e07a22 100644 --- a/.swift-version +++ b/.swift-version @@ -1 +1 @@ -swift-5.0-DEVELOPMENT-SNAPSHOT-2019-03-10-a +5.0 diff --git a/README.md b/README.md index 120bf6c36..cf3fc9a12 100644 --- a/README.md +++ b/README.md @@ -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.3 +github "pointfreeco/swift-snapshot-testing" ~> 1.4 ``` > ⚠️ 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 ```ruby target 'MyAppTests' do - pod 'SnapshotTesting', '~> 1.3' + pod 'SnapshotTesting', '~> 1.4' end ``` @@ -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.3.0"), + .package(url: "https://github.com/pointfreeco/swift-snapshot-testing.git", from: "1.4.0"), ] ``` diff --git a/SnapshotTesting.podspec b/SnapshotTesting.podspec index 6aafd0321..0b77861c8 100644 --- a/SnapshotTesting.podspec +++ b/SnapshotTesting.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "SnapshotTesting" - s.version = "1.3.0" + s.version = "1.4.0" s.summary = "Tests that save and assert against reference data" s.description = <<-DESC @@ -24,7 +24,7 @@ Pod::Spec.new do |s| :tag => s.version } - s.swift_version = "4.2" + s.swift_version = "5.0" s.ios.deployment_target = "10.0" s.osx.deployment_target = "10.10"