diff --git a/FileSmith.podspec b/FileSmith.podspec index a72d134..615e525 100644 --- a/FileSmith.podspec +++ b/FileSmith.podspec @@ -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' diff --git a/README.md b/README.md index ac59184..4308d81 100644 --- a/README.md +++ b/README.md @@ -170,7 +170,7 @@ 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 @@ -178,7 +178,7 @@ 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") ] ) ```