diff --git a/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 0000000..919434a
--- /dev/null
+++ b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/README.md b/README.md
index 1d49fe5..dacfbda 100644
--- a/README.md
+++ b/README.md
@@ -445,7 +445,7 @@ Then run your Swift scripts with `marathon run .swift`. Or add `#!/usr/bin
### [Swift Package Manager](https://github.com/apple/swift-package-manager)
-Add `.package(url: "https://github.com/kareman/SwiftShell", from: "5.0.0")` and `platforms: [.macOS(.v10_13)],` to your Package.swift:
+Add `.package(url: "https://github.com/kareman/SwiftShell", from: "5.0.1")` to your Package.swift:
```swift
// swift-tools-version:5.0
@@ -458,7 +458,7 @@ let package = Package(
platforms: [.macOS(.v10_13)],
dependencies: [
// Dependencies declare other packages that this package depends on.
- .package(url: "https://github.com/kareman/SwiftShell", from: "5.0.0")
+ .package(url: "https://github.com/kareman/SwiftShell", from: "5.0.1")
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
diff --git a/SwiftShell.podspec b/SwiftShell.podspec
index d7ef7f0..dc88f06 100644
--- a/SwiftShell.podspec
+++ b/SwiftShell.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'SwiftShell'
- s.version = '5.0.0'
+ s.version = '5.0.1'
s.summary = 'A Swift framework for shell scripting.'
s.description = 'SwiftShell is a library for creating command-line applications and running shell commands in Swift.'
s.homepage = 'https://github.com/kareman/SwiftShell'
@@ -8,6 +8,6 @@ Pod::Spec.new do |s|
s.author = { 'Kare Morstol' => 'kare@nottoobadsoftware.com' }
s.source = { git: 'https://github.com/kareman/SwiftShell.git', tag: s.version.to_s }
s.source_files = 'Sources/SwiftShell/*.swift','Sources/SwiftShell/*/*.swift'
- s.osx.deployment_target = '10.13'
+ s.osx.deployment_target = '10.11'
s.ios.deployment_target = '9.0'
end