From 129e393c6d17f7f6490fa212f19ae0d558bbd5dc Mon Sep 17 00:00:00 2001 From: Stephen Celis Date: Tue, 18 Dec 2018 12:53:45 -0500 Subject: [PATCH] Prep release for 1.1.0 (#148) * Update README.md * Update SnapshotTesting.podspec --- README.md | 6 +++--- SnapshotTesting.podspec | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5af6d4717..d361610bf 100644 --- a/README.md +++ b/README.md @@ -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: @@ -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 ``` @@ -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"), ] ``` diff --git a/SnapshotTesting.podspec b/SnapshotTesting.podspec index 4ce1eaa7f..c90964faf 100644 --- a/SnapshotTesting.podspec +++ b/SnapshotTesting.podspec @@ -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