Skip to content

Commit

Permalink
Release 5.1 (#95)
Browse files Browse the repository at this point in the history
* Update README.md

* Update podspec.
  • Loading branch information
kareman authored Sep 25, 2020
1 parent c36f2e1 commit 99680b2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ Then run your Swift scripts with `marathon run <name>.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.1")` to your Package.swift:
Add `.package(url: "https://github.com/kareman/SwiftShell", from: "5.1.0")` to your Package.swift:

```swift
// swift-tools-version:5.0
Expand All @@ -452,7 +452,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.1")
.package(url: "https://github.com/kareman/SwiftShell", from: "5.1.0")
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
Expand All @@ -469,7 +469,7 @@ and run `swift build`.

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

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.
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.

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

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

```Ruby
pod 'SwiftShell', '>= 5.0.0'
pod 'SwiftShell', '>= 5.1.0'
```

Then run `pod install` to install it.
Expand Down
2 changes: 1 addition & 1 deletion SwiftShell.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'SwiftShell'
s.version = '5.0.1'
s.version = '5.1.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'
Expand Down

0 comments on commit 99680b2

Please sign in to comment.