Skip to content

Commit

Permalink
Update changelog for 0.3.1 release (#237)
Browse files Browse the repository at this point in the history
  • Loading branch information
natecook1000 authored Sep 2, 2020
1 parent c347030 commit 92646c0
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,23 @@ package updates, you can specify your package dependency using

---

## [0.3.1] - 2020-09-02

### Fixes

- An option or flag can now declare a name with both single- and double-
dash prefixes, such as `-my-flag` and `--my-flag`. Specify both names in the
`name` parameter when declaring your property:

```swift
@Flag(name: [.long, .customLong("my-flag", withSingleDash: true)])
var myFlag = false
```

- Parsing performance improvements.

---

## [0.3.0] - 2020-08-15

### Additions
Expand Down Expand Up @@ -329,7 +346,8 @@ This changelog's format is based on [Keep a Changelog](https://keepachangelog.co

<!-- Link references for releases -->

[Unreleased]: https://github.com/apple/swift-argument-parser/compare/0.3.0...HEAD
[Unreleased]: https://github.com/apple/swift-argument-parser/compare/0.3.1...HEAD
[0.3.1]: https://github.com/apple/swift-argument-parser/compare/0.3.0...0.3.1
[0.3.0]: https://github.com/apple/swift-argument-parser/compare/0.2.2...0.3.0
[0.2.2]: https://github.com/apple/swift-argument-parser/compare/0.2.1...0.2.2
[0.2.1]: https://github.com/apple/swift-argument-parser/compare/0.2.0...0.2.1
Expand Down

0 comments on commit 92646c0

Please sign in to comment.