Skip to content

Commit

Permalink
Bump Version
Browse files Browse the repository at this point in the history
  • Loading branch information
stephencelis committed Oct 13, 2018
1 parent e6784e4 commit bcf639e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions NonEmpty.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "NonEmpty"
s.version = "0.1.0"
s.version = "0.1.2"
s.summary = "A compile-time guarantee that a collection contains a value."

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

s.source = {
:git => "https://github.com/pointfreeco/swift-nonempty.git",
:tag => "0.1.0"
:tag => s.version
}

s.ios.deployment_target = "8.0"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,15 +142,15 @@ let validatedPassword: Validated<String, String> = .invalid(.init([])) // 🛑
If you use [Carthage](https://github.com/Carthage/Carthage), you can add the following dependency to your `Cartfile`:

``` ruby
github "pointfreeco/swift-nonempty" ~> 0.1.1
github "pointfreeco/swift-nonempty" ~> 0.1
```

### CocoaPods

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

``` ruby
pod 'NonEmpty', '~> 0.1.1'
pod 'NonEmpty', '~> 0.1'
```

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

``` swift
dependencies: [
.package(url: "https://github.com/pointfreeco/swift-nonempty.git", from: "0.1.1")
.package(url: "https://github.com/pointfreeco/swift-nonempty.git", from: "0.1.2")
]
```

Expand Down

0 comments on commit bcf639e

Please sign in to comment.