diff --git a/.swift-version b/.swift-version index 84702b3..819e07a 100644 --- a/.swift-version +++ b/.swift-version @@ -1 +1 @@ -swift-5.0-DEVELOPMENT-SNAPSHOT-2019-03-10-a +5.0 diff --git a/Html.podspec b/Html.podspec index 97ee018..fd71b64 100644 --- a/Html.podspec +++ b/Html.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Html" - s.version = "0.2.0" + s.version = "0.3.0" s.summary = "A Swift DSL for type-safe, extensible, and transformable HTML documents." s.description = <<-DESC @@ -28,7 +28,7 @@ Pod::Spec.new do |s| s.swift_version = "5.0" s.ios.deployment_target = "8.0" - s.osx.deployment_target = "10.9" + s.osx.deployment_target = "10.10" s.tvos.deployment_target = "9.0" s.watchos.deployment_target = "2.0" diff --git a/HtmlSnapshotTesting.podspec b/HtmlSnapshotTesting.podspec index adf5fb9..c293540 100644 --- a/HtmlSnapshotTesting.podspec +++ b/HtmlSnapshotTesting.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "HtmlSnapshotTesting" - s.version = "0.2.0" + s.version = "0.3.0" s.summary = "SnapshotTesting strategies for Html." s.description = <<-DESC @@ -28,8 +28,8 @@ Pod::Spec.new do |s| s.osx.deployment_target = "10.10" s.tvos.deployment_target = "10.0" - s.dependency "Html", "~> 0.2" - s.dependency "SnapshotTesting", "~> 1.1" + s.dependency "Html", "~> 0.3" + s.dependency "SnapshotTesting", "~> 1.3" s.source_files = "Sources/HtmlSnapshotTesting/**/*.swift" end diff --git a/README.md b/README.md index bf438de..2ec5e77 100644 --- a/README.md +++ b/README.md @@ -193,7 +193,7 @@ There are a few reasons you might want to still use a templating language: If you use [Carthage](https://github.com/Carthage/Carthage), you can add the following dependency to your `Cartfile`: ``` ruby -github "pointfreeco/swift-html" ~> 0.2 +github "pointfreeco/swift-html" ~> 0.3 ``` ### CocoaPods @@ -201,7 +201,10 @@ github "pointfreeco/swift-html" ~> 0.2 If your project uses [CocoaPods](https://cocoapods.org), just add the following to your `Podfile`: ``` ruby -pod 'Html', '~> 0.2' +pod 'Html', '~> 0.3' + +# SnapshotTesting helpers +pod 'HtmlSnapshotTesting', '~> 0.3' ``` ### SwiftPM @@ -210,7 +213,7 @@ If you want to use swift-html in a project that uses [SwiftPM](https://swift.org ``` swift dependencies: [ - .package(url: "https://github.com/pointfreeco/swift-html.git", from: "0.2.0") + .package(url: "https://github.com/pointfreeco/swift-html.git", from: "0.3.0") ] ```