Skip to content

Commit

Permalink
README/Podspec bumps for 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
stephencelis committed Mar 26, 2019
1 parent 4345944 commit f6fd8c9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .swift-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
swift-5.0-DEVELOPMENT-SNAPSHOT-2019-03-10-a
5.0
4 changes: 2 additions & 2 deletions Html.podspec
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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"

Expand Down
6 changes: 3 additions & 3 deletions HtmlSnapshotTesting.podspec
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,15 +193,18 @@ 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

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
Expand All @@ -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")
]
```

Expand Down

0 comments on commit f6fd8c9

Please sign in to comment.