Skip to content

Commit

Permalink
Update to version 0.2.2. Add setup.sh.
Browse files Browse the repository at this point in the history
  • Loading branch information
kareman committed Nov 5, 2018
1 parent 56ce794 commit 24c433b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions FileSmith.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FileSmith'
s.version = '0.2.1'
s.version = '0.2.2'
s.summary = 'A strongly typed Swift library for working with local files and directories.'
s.description = 'FileSmith differentiates between file paths and directory paths, and between paths and actual files and directories, because the programmer knows which are which and when the compiler knows it too it can be much more helpful.'
s.homepage = 'https://github.com/kareman/FileSmith'
Expand All @@ -10,5 +10,5 @@ Pod::Spec.new do |s|
s.source_files = 'Sources/FileSmith/*.swift'
s.osx.deployment_target = '10.10'
s.ios.deployment_target = '9.0'
s.dependency 'SwiftShell', '~> 4.1'
s.dependency 'SwiftShell', '~> 4.1.2'
end
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,16 +170,16 @@ public enum FileType: Equatable, Hashable {

### [Swift Package Manager](https://github.com/apple/swift-package-manager)

Add `.Package(url: "https://github.com/kareman/FileSmith", "0.2.1")` to your Package.swift:
Add `.package(url: "https://github.com/kareman/FileSmith", from: "0.2.2")` to your Package.swift:

```swift
import PackageDescription

let package = Package(
name: "somename",
dependencies: [
.Package(url: "https://github.com/kareman/FileSmith", "0.2.1")
]
.package(url: "https://github.com/kareman/FileSmith", from: "0.2.2")
]
)
```

Expand Down
3 changes: 3 additions & 0 deletions setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env bash

carthage bootstrap

0 comments on commit 24c433b

Please sign in to comment.