Skip to content

Commit f6fd8c9

Browse files
committed
README/Podspec bumps for 0.3
1 parent 4345944 commit f6fd8c9

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

.swift-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
swift-5.0-DEVELOPMENT-SNAPSHOT-2019-03-10-a
1+
5.0

Html.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Html"
3-
s.version = "0.2.0"
3+
s.version = "0.3.0"
44
s.summary = "A Swift DSL for type-safe, extensible, and transformable HTML documents."
55

66
s.description = <<-DESC
@@ -28,7 +28,7 @@ Pod::Spec.new do |s|
2828
s.swift_version = "5.0"
2929

3030
s.ios.deployment_target = "8.0"
31-
s.osx.deployment_target = "10.9"
31+
s.osx.deployment_target = "10.10"
3232
s.tvos.deployment_target = "9.0"
3333
s.watchos.deployment_target = "2.0"
3434

HtmlSnapshotTesting.podspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "HtmlSnapshotTesting"
3-
s.version = "0.2.0"
3+
s.version = "0.3.0"
44
s.summary = "SnapshotTesting strategies for Html."
55

66
s.description = <<-DESC
@@ -28,8 +28,8 @@ Pod::Spec.new do |s|
2828
s.osx.deployment_target = "10.10"
2929
s.tvos.deployment_target = "10.0"
3030

31-
s.dependency "Html", "~> 0.2"
32-
s.dependency "SnapshotTesting", "~> 1.1"
31+
s.dependency "Html", "~> 0.3"
32+
s.dependency "SnapshotTesting", "~> 1.3"
3333

3434
s.source_files = "Sources/HtmlSnapshotTesting/**/*.swift"
3535
end

README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -193,15 +193,18 @@ There are a few reasons you might want to still use a templating language:
193193
If you use [Carthage](https://github.com/Carthage/Carthage), you can add the following dependency to your `Cartfile`:
194194

195195
``` ruby
196-
github "pointfreeco/swift-html" ~> 0.2
196+
github "pointfreeco/swift-html" ~> 0.3
197197
```
198198

199199
### CocoaPods
200200

201201
If your project uses [CocoaPods](https://cocoapods.org), just add the following to your `Podfile`:
202202

203203
``` ruby
204-
pod 'Html', '~> 0.2'
204+
pod 'Html', '~> 0.3'
205+
206+
# SnapshotTesting helpers
207+
pod 'HtmlSnapshotTesting', '~> 0.3'
205208
```
206209

207210
### SwiftPM
@@ -210,7 +213,7 @@ If you want to use swift-html in a project that uses [SwiftPM](https://swift.org
210213

211214
``` swift
212215
dependencies: [
213-
.package(url: "https://github.com/pointfreeco/swift-html.git", from: "0.2.0")
216+
.package(url: "https://github.com/pointfreeco/swift-html.git", from: "0.3.0")
214217
]
215218
```
216219

0 commit comments

Comments
 (0)