Skip to content

Commit e9685ce

Browse files
authored
Merge pull request #11 from pointfreeco/prep-0-2-1
Prep 0.2.1
2 parents 7f74288 + dcef560 commit e9685ce

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Cartfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "pointfreeco/swift-nonempty" ~> 0.2.0
1+
github "pointfreeco/swift-nonempty" ~> 0.2.1

Cartfile.resolved

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "pointfreeco/swift-nonempty" "0.2.0"
1+
github "pointfreeco/swift-nonempty" "0.2.1"

PointFree-Validated.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "PointFree-Validated"
33
s.module_name = "Validated"
4-
s.version = "0.2.0"
4+
s.version = "0.2.1"
55
s.summary = "A result type that accumulates multiple errors."
66

77
s.description = <<-DESC
@@ -32,5 +32,5 @@ Pod::Spec.new do |s|
3232

3333
s.source_files = "Sources", "Sources/**/*.swift"
3434

35-
s.dependency "NonEmpty", "~> 0.2.0"
35+
s.dependency "NonEmpty", "~> 0.2.1"
3636
end

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -171,15 +171,15 @@ Invalid errors are held in a [non-empty array](https://github.com/pointfreeco/sw
171171
If you use [Carthage](https://github.com/Carthage/Carthage), you can add the following dependency to your `Cartfile`:
172172

173173
``` ruby
174-
github "pointfreeco/swift-validated" ~> 0.2
174+
github "pointfreeco/swift-validated" ~> 0.2.1
175175
```
176176

177177
### CocoaPods
178178

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

181181
``` ruby
182-
pod 'PointFree-Validated', '~> 0.2'
182+
pod 'PointFree-Validated', '~> 0.2.1'
183183
```
184184

185185
### SwiftPM
@@ -188,7 +188,7 @@ If you want to use Validated in a project that uses [SwiftPM](https://swift.org/
188188

189189
``` swift
190190
dependencies: [
191-
.package(url: "https://github.com/pointfreeco/swift-validated.git", from: "0.2.0")
191+
.package(url: "https://github.com/pointfreeco/swift-validated.git", from: "0.2.1")
192192
]
193193
```
194194

0 commit comments

Comments
 (0)