@@ -10,6 +10,18 @@ Add new items at the end of the relevant section under **Unreleased**.
10
10
11
11
---
12
12
13
+ ## [ 1.2.2] - 2023-02-09
14
+
15
+ ### Fixes
16
+
17
+ - Arguments with the ` .allUnrecognized ` parsing strategy no longer consume
18
+ built-in flags like ` --help ` and ` --version ` . ([ #550 ] )
19
+ - Fixes an issue introduced in version 1.2.0 where properties with underscored
20
+ names couldn't be parsed. ([ #548 ] )
21
+ - Improves the error message for cases where platform availability causes the
22
+ synchronous ` ParsableCommand.main() ` static method to be run on an
23
+ ` AsyncParsableCommand ` type. ([ #547 ] )
24
+
13
25
## [ 1.2.1] - 2023-01-12
14
26
15
27
### Changes
@@ -764,7 +776,8 @@ This changelog's format is based on [Keep a Changelog](https://keepachangelog.co
764
776
765
777
<!-- Link references for releases -->
766
778
767
- [ Unreleased ] : https://github.com/apple/swift-argument-parser/compare/1.2.1...HEAD
779
+ [ Unreleased ] : https://github.com/apple/swift-argument-parser/compare/1.2.2...HEAD
780
+ [ 1.2.2 ] : https://github.com/apple/swift-argument-parser/compare/1.2.1...1.2.2
768
781
[ 1.2.1 ] : https://github.com/apple/swift-argument-parser/compare/1.2.0...1.2.1
769
782
[ 1.2.0 ] : https://github.com/apple/swift-argument-parser/compare/1.1.4...1.2.0
770
783
[ 1.1.4 ] : https://github.com/apple/swift-argument-parser/compare/1.1.3...1.1.4
@@ -851,6 +864,9 @@ This changelog's format is based on [Keep a Changelog](https://keepachangelog.co
851
864
[ #522 ] : https://github.com/apple/swift-argument-parser/pull/522
852
865
[ #535 ] : https://github.com/apple/swift-argument-parser/pull/535
853
866
[ #542 ] : https://github.com/apple/swift-argument-parser/pull/542
867
+ [ #547 ] : https://github.com/apple/swift-argument-parser/pull/547
868
+ [ #548 ] : https://github.com/apple/swift-argument-parser/pull/548
869
+ [ #550 ] : https://github.com/apple/swift-argument-parser/pull/550
854
870
855
871
<!-- Link references for contributors -->
856
872
0 commit comments