Skip to content

Commit fb7fc2c

Browse files
committed
Release 5.0.1
1 parent 031cd65 commit fb7fc2c

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ Then run your Swift scripts with `marathon run <name>.swift`. Or add `#!/usr/bin
445445

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

448-
Add `.package(url: "https://github.com/kareman/SwiftShell", from: "5.0.0")` and `platforms: [.macOS(.v10_13)],` to your Package.swift:
448+
Add `.package(url: "https://github.com/kareman/SwiftShell", from: "5.0.1")` to your Package.swift:
449449

450450
```swift
451451
// swift-tools-version:5.0
@@ -458,7 +458,7 @@ let package = Package(
458458
platforms: [.macOS(.v10_13)],
459459
dependencies: [
460460
// Dependencies declare other packages that this package depends on.
461-
.package(url: "https://github.com/kareman/SwiftShell", from: "5.0.0")
461+
.package(url: "https://github.com/kareman/SwiftShell", from: "5.0.1")
462462
],
463463
targets: [
464464
// Targets are the basic building blocks of a package. A target can define a module or a test suite.

SwiftShell.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Pod::Spec.new do |s|
22
s.name = 'SwiftShell'
3-
s.version = '5.0.0'
3+
s.version = '5.0.1'
44
s.summary = 'A Swift framework for shell scripting.'
55
s.description = 'SwiftShell is a library for creating command-line applications and running shell commands in Swift.'
66
s.homepage = 'https://github.com/kareman/SwiftShell'
77
s.license = { type: 'MIT', file: 'LICENSE.txt' }
88
s.author = { 'Kare Morstol' => '[email protected]' }
99
s.source = { git: 'https://github.com/kareman/SwiftShell.git', tag: s.version.to_s }
1010
s.source_files = 'Sources/SwiftShell/*.swift','Sources/SwiftShell/*/*.swift'
11-
s.osx.deployment_target = '10.13'
11+
s.osx.deployment_target = '10.11'
1212
s.ios.deployment_target = '9.0'
1313
end

0 commit comments

Comments
 (0)