Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update podspec #13

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions String+Extensions.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,20 @@

Pod::Spec.new do |s|
s.name = 'String+Extensions'
s.version = '1.1.0'
s.version = '2.0.4'
s.summary = 'A lightweight string extension for Swift'

s.description = <<-DESC
String+Extensions is a lightweight string extension for Swift 3.
This library was motivated by having to search StackOverflow for common string operations, and wanting them to be in one place with test coverage.
SwiftString is a lightweight string extension for Swift 3 and 4. This library was motivated by having to search StackOverflow for common string operations, and wanting them to be in one place with test coverage.

Note the original client side Swift 2 repo can be found here: https://github.com/amayne/SwiftString
DESC
DESC

s.homepage = 'https://github.com/iamjono/SwiftString'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = {
"Andrew Mayne" => "[email protected]",
"Jonathan Guthrie" => "[email protected]",
"Koji Murata" => '[email protected]'
"Jonathan Guthrie" => "[email protected]"
}
s.source = { :git => 'https://github.com/iamjono/SwiftString.git', :tag => s.version.to_s }

Expand Down