Skip to content

Commit 0727844

Browse files
committed
Release version 0.5.1.
1 parent 01841b0 commit 0727844

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

FootlessParser.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Pod::Spec.new do |s|
22
s.name = 'FootlessParser'
3-
s.version = '0.5.0'
3+
s.version = '0.5.1'
44
s.summary = 'A simple parser combinator written in Swift'
55
s.description = 'FootlessParser is a simple and pretty naive implementation of a parser combinator in Swift. It enables infinite lookahead, non-ambiguous parsing with error reporting.'
66
s.homepage = 'https://github.com/kareman/FootlessParser'
77
s.license = { type: 'MIT', file: 'LICENSE.txt' }
88
s.author = { 'Kare Morstol' => '[email protected]' }
99
s.source = { git: 'https://github.com/kareman/FootlessParser.git', tag: s.version.to_s }
10-
s.source_files = 'Sources/*.swift'
10+
s.source_files = 'Sources/FootlessParser/*.swift'
1111
s.osx.deployment_target = '10.10'
1212
s.ios.deployment_target = '9.0'
1313
end

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
22

3-
Swift 4 | [Swift 2.2+](https://github.com/kareman/FootlessParser/tree/swift2.2%2B)
3+
Swift 4.2 and 4.1 | [Swift 2.2+](https://github.com/kareman/FootlessParser/tree/swift2.2%2B)
44

55
# FootlessParser
66

@@ -165,7 +165,7 @@ Follow the current instructions in [Carthage's README][carthage-installation] fo
165165
Add `FootlessParser` to your `Podfile` file.
166166

167167
```
168-
pod 'FootlessParser', '~> 0.5'
168+
pod 'FootlessParser', '~> 0.5.1'
169169
```
170170

171171
Then run `pod install` to install it.

0 commit comments

Comments
 (0)