Skip to content

Commit cdb243a

Browse files
committed
Release SwiftShell 3.0.
At long last.
1 parent dcd6f2d commit cdb243a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ A library for creating command-line applications and running shell commands in S
2525

2626
#### See also
2727

28-
- [Documentation](http://kareman.github.io/SwiftShell) from the source code.
28+
- [API Documentation](http://kareman.github.io/SwiftShell).
2929
- A [description](https://www.skilled.io/kare/swiftshell) of the project on [skilled.io](https://www.skilled.io).
3030

3131
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
@@ -448,15 +448,15 @@ import SwiftShell
448448

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

451-
Add `.Package(url: "https://github.com/kareman/SwiftShell", "3.0.0-beta")` to your Package.swift:
451+
Add `.Package(url: "https://github.com/kareman/SwiftShell", "3.0.0")` to your Package.swift:
452452

453453
```swift
454454
import PackageDescription
455455

456456
let package = Package(
457457
name: "somecommandlineapp",
458458
dependencies: [
459-
.Package(url: "https://github.com/kareman/SwiftShell.git", "3.0.0-beta")
459+
.Package(url: "https://github.com/kareman/SwiftShell.git", "3.0.0")
460460
]
461461
)
462462
```
@@ -474,7 +474,7 @@ Add `github "kareman/SwiftShell" "master"` to your Cartfile, then run `carthage
474474
Add `SwiftShell` to your `Podfile`.
475475

476476
```Ruby
477-
pod 'SwiftShell', '>= 3.0.0-beta'
477+
pod 'SwiftShell', '>= 3.0.0'
478478
```
479479

480480
Then run `pod install` to install it.

SwiftShell.podspec

+1-1
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 = '3.0.0-beta.14'
3+
s.version = '3.0.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)