diff --git a/Misc/swiftshell-init b/Misc/swiftshell-init index c9f7cef..44761b5 100755 --- a/Misc/swiftshell-init +++ b/Misc/swiftshell-init @@ -22,7 +22,7 @@ let package = Package( name: "$NAME", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/kareman/SwiftShell", from: "4.0.0") + .package(url: "https://github.com/kareman/SwiftShell", from: "5.0.0") ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/README.md b/README.md index 67af097..c32a366 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Run shell commands | [Parse command line arguments](https://github.com/kareman/M --- -Swift 4 | [Swift 3](https://github.com/kareman/SwiftShell/tree/Swift3) | [Swift 2](https://github.com/kareman/SwiftShell/tree/Swift2) +Swift 5 | [Swift 4](https://github.com/kareman/SwiftShell/tree/Swift4) | [Swift 3](https://github.com/kareman/SwiftShell/tree/Swift3) | [Swift 2](https://github.com/kareman/SwiftShell/tree/Swift2)

SwiftShell logo @@ -445,10 +445,10 @@ 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: "4.0.0")` to your Package.swift: +Add `.package(url: "https://github.com/kareman/SwiftShell", from: "5.0.0")` to your Package.swift: ```swift -// swift-tools-version:4.0 +// swift-tools-version:5.0 // The swift-tools-version declares the minimum version of Swift required to build this package. import PackageDescription @@ -457,7 +457,7 @@ let package = Package( name: "ProjectName", dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "https://github.com/kareman/SwiftShell", from: "4.0.0") + .package(url: "https://github.com/kareman/SwiftShell", from: "5.0.0") ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. @@ -474,7 +474,7 @@ and run `swift build`. ### [Carthage](https://github.com/Carthage/Carthage) -Add `github "kareman/SwiftShell" >= 4.0` to your Cartfile, then run `carthage update` and add the resulting framework to the "Embedded Binaries" section of the application. See [Carthage's README][carthage-installation] for further instructions. +Add `github "kareman/SwiftShell" >= 5.0` to your Cartfile, then run `carthage update` and add the resulting framework to the "Embedded Binaries" section of the application. See [Carthage's README][carthage-installation] for further instructions. [carthage-installation]: https://github.com/Carthage/Carthage#adding-frameworks-to-an-application @@ -483,7 +483,7 @@ Add `github "kareman/SwiftShell" >= 4.0` to your Cartfile, then run `carthage up Add `SwiftShell` to your `Podfile`. ```Ruby -pod 'SwiftShell', '>= 4.0.0' +pod 'SwiftShell', '>= 5.0.0' ``` Then run `pod install` to install it. diff --git a/SwiftShell.podspec b/SwiftShell.podspec index 12f91ed..d7ef7f0 100644 --- a/SwiftShell.podspec +++ b/SwiftShell.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'SwiftShell' - s.version = '4.1.2' + s.version = '5.0.0' 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.10' + s.osx.deployment_target = '10.13' s.ios.deployment_target = '9.0' end