Skip to content

Commit 99680b2

Browse files
authored
Release 5.1 (#95)
* Update README.md * Update podspec.
1 parent c36f2e1 commit 99680b2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

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

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

442-
Add `.package(url: "https://github.com/kareman/SwiftShell", from: "5.0.1")` to your Package.swift:
442+
Add `.package(url: "https://github.com/kareman/SwiftShell", from: "5.1.0")` to your Package.swift:
443443

444444
```swift
445445
// swift-tools-version:5.0
@@ -452,7 +452,7 @@ let package = Package(
452452
platforms: [.macOS(.v10_13)],
453453
dependencies: [
454454
// Dependencies declare other packages that this package depends on.
455-
.package(url: "https://github.com/kareman/SwiftShell", from: "5.0.1")
455+
.package(url: "https://github.com/kareman/SwiftShell", from: "5.1.0")
456456
],
457457
targets: [
458458
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
@@ -469,7 +469,7 @@ and run `swift build`.
469469

470470
### [Carthage](https://github.com/Carthage/Carthage)
471471

472-
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.
472+
Add `github "kareman/SwiftShell" >= 5.1` 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.
473473

474474
[carthage-installation]: https://github.com/Carthage/Carthage#adding-frameworks-to-an-application
475475

@@ -478,7 +478,7 @@ Add `github "kareman/SwiftShell" >= 5.0` to your Cartfile, then run `carthage up
478478
Add `SwiftShell` to your `Podfile`.
479479

480480
```Ruby
481-
pod 'SwiftShell', '>= 5.0.0'
481+
pod 'SwiftShell', '>= 5.1.0'
482482
```
483483

484484
Then run `pod install` to install it.

SwiftShell.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'SwiftShell'
3-
s.version = '5.0.1'
3+
s.version = '5.1.0'
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'

0 commit comments

Comments
 (0)