Skip to content

Commit

Permalink
Release version 0.2.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
kareman committed Sep 14, 2018
1 parent a6341a9 commit c5fe76d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 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.0'
s.version = '0.2.1'
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 Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,15 +170,15 @@ 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.0")` to your Package.swift:
Add `.Package(url: "https://github.com/kareman/FileSmith", "0.2.1")` to your Package.swift:

```swift
import PackageDescription

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

0 comments on commit c5fe76d

Please sign in to comment.