Skip to content

Commit bcf639e

Browse files
committed
Bump Version
1 parent e6784e4 commit bcf639e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

NonEmpty.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "NonEmpty"
3-
s.version = "0.1.0"
3+
s.version = "0.1.2"
44
s.summary = "A compile-time guarantee that a collection contains a value."
55

66
s.description = <<-DESC
@@ -19,7 +19,7 @@ Pod::Spec.new do |s|
1919

2020
s.source = {
2121
:git => "https://github.com/pointfreeco/swift-nonempty.git",
22-
:tag => "0.1.0"
22+
:tag => s.version
2323
}
2424

2525
s.ios.deployment_target = "8.0"

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -142,15 +142,15 @@ let validatedPassword: Validated<String, String> = .invalid(.init([])) // 🛑
142142
If you use [Carthage](https://github.com/Carthage/Carthage), you can add the following dependency to your `Cartfile`:
143143

144144
``` ruby
145-
github "pointfreeco/swift-nonempty" ~> 0.1.1
145+
github "pointfreeco/swift-nonempty" ~> 0.1
146146
```
147147

148148
### CocoaPods
149149

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

152152
``` ruby
153-
pod 'NonEmpty', '~> 0.1.1'
153+
pod 'NonEmpty', '~> 0.1'
154154
```
155155

156156
### SwiftPM
@@ -159,7 +159,7 @@ If you want to use NonEmpty in a project that uses [SwiftPM](https://swift.org/p
159159

160160
``` swift
161161
dependencies: [
162-
.package(url: "https://github.com/pointfreeco/swift-nonempty.git", from: "0.1.1")
162+
.package(url: "https://github.com/pointfreeco/swift-nonempty.git", from: "0.1.2")
163163
]
164164
```
165165

0 commit comments

Comments
 (0)