Skip to content

Commit 0145fd6

Browse files
author
Liam Flynn
committed
Update requirements documentation in README and edit change log.
1 parent 64729be commit 0145fd6

3 files changed

Lines changed: 8 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,10 @@
4141

4242
## Version 2.0.0
4343

44-
### *Released 2019-09-01*
44+
### *Released 2019-08-18*
4545

4646
* Swift 5 and Xcode 10.3 updates.
4747
* Swiftlint version update to 0.34.0
48-
* Add failure messages to all XCFail test cases.
48+
* Remove string copies using Swift 5 string updates.
49+
* Remove some typealiases masking Swift types for transparency.
50+
* Increase unit test readability.

ParserCombinator.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Pod::Spec.new do |s|
99
s.version = '2.0.0'
1010
s.summary = 'Exquisitely simple functional parsing in Swift.'
1111
s.description = <<-DESC
12-
A simple parser combinator, created in Swift. Functional parser combinators can be extremely useful but can also be difficult to understand. ParserCombinator attempts to strip this back and create a simple and user friendly way to parse strings into other objects. Technical terms, like mooned, are avoided or explained if necessary and docs are provided in plain English, with examples.
12+
A simple parser combinator, created in Swift. Functional parser combinators can be extremely useful but can also be difficult to understand. ParserCombinator attempts to strip this back and create a simple and user friendly way to parse complex strings into other objects. Technical terms, like 'monad', are avoided or explained if necessary and docs are provided in plain English, with examples.
1313
DESC
1414

1515
s.homepage = 'https://github.com/tigerpixel/ParserCombinator'

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,16 @@ Pull requests for improvements are welcome.
2525
There are no external requirements for this project, just Swift.
2626

2727
- iOS 8.0+ / macOS 10.9+ / tvOS 9.0+ / watchOS 2.0+
28-
- Xcode 9.0+
29-
- Swift 4.0+
28+
- Xcode 10.3+
29+
- Swift 5.0+
3030

3131
For previous versions of Xcode and Swift please see prior releases.
3232

3333
## Installation
3434

3535
### Cocoapods
3636

37-
ParserCombinator is available through [CocoaPods](http://cocoapods.org). To install it, simply add the following line to your Podfile:
37+
ParserCombinator is available through [CocoaPods](https://cocoapods.org/pods/ParserCombinator). To install it, simply add the following line to your Podfile:
3838

3939
```ruby
4040
pod "ParserCombinator"

0 commit comments

Comments
 (0)