diff --git a/README.md b/README.md index 7cece44..df5094b 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ A library for creating command-line applications and running shell commands in S #### See also -- [Documentation](http://kareman.github.io/SwiftShell) from the source code. +- [API Documentation](http://kareman.github.io/SwiftShell). - A [description](https://www.skilled.io/kare/swiftshell) of the project on [skilled.io](https://www.skilled.io). @@ -448,7 +448,7 @@ import SwiftShell ### [Swift Package Manager](https://github.com/apple/swift-package-manager) -Add `.Package(url: "https://github.com/kareman/SwiftShell", "3.0.0-beta")` to your Package.swift: +Add `.Package(url: "https://github.com/kareman/SwiftShell", "3.0.0")` to your Package.swift: ```swift import PackageDescription @@ -456,7 +456,7 @@ import PackageDescription let package = Package( name: "somecommandlineapp", dependencies: [ - .Package(url: "https://github.com/kareman/SwiftShell.git", "3.0.0-beta") + .Package(url: "https://github.com/kareman/SwiftShell.git", "3.0.0") ] ) ``` @@ -474,7 +474,7 @@ Add `github "kareman/SwiftShell" "master"` to your Cartfile, then run `carthage Add `SwiftShell` to your `Podfile`. ```Ruby -pod 'SwiftShell', '>= 3.0.0-beta' +pod 'SwiftShell', '>= 3.0.0' ``` Then run `pod install` to install it. diff --git a/SwiftShell.podspec b/SwiftShell.podspec index 0f2aa77..5e4d355 100644 --- a/SwiftShell.podspec +++ b/SwiftShell.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'SwiftShell' - s.version = '3.0.0-beta.14' + s.version = '3.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'