@@ -8,10 +8,14 @@ This project follows semantic versioning. While still in major version `0`,
8
8
source-stability is only guaranteed within minor versions (e.g. between
9
9
` 0.0.3 ` and ` 0.0.4 ` ). If you want to guard against potentially source-breaking
10
10
package updates, you can specify your package dependency using
11
- ` .upToNextMinor(from: "0.0.1 ") ` as the requirement.
11
+ ` .upToNextMinor(from: "0.1.0 ") ` as the requirement.
12
12
13
13
## [ Unreleased]
14
14
15
+ * No changes yet.*
16
+
17
+ ## [ 0.1.0] - 2020-06-03
18
+
15
19
### Additions
16
20
17
21
- Error messages and help screens now include information about how to request
@@ -40,6 +44,16 @@ package updates, you can specify your package dependency using
40
44
- ` ParsableCommand ` 's ` run() ` method requirement is now a ` mutating ` method,
41
45
allowing mutations to a command's properties, such as sorting an array of
42
46
arguments, without additional copying.
47
+
48
+ * Migration:* No changes are required for commands that are executed through
49
+ the ` main() ` method. If you manually parse a command and then call its
50
+ ` run() ` method, you may need to change the command from a constant to a
51
+ variable.
52
+
53
+ ### Removals
54
+
55
+ - The ` @Flag ` initializers that were deprecated in version 0.0.6 are now
56
+ marked as unavailable.
43
57
44
58
### Fixes
45
59
@@ -54,6 +68,9 @@ package updates, you can specify your package dependency using
54
68
argument array.
55
69
- CMake builds work correctly again.
56
70
71
+ The 0.1.0 release includes contributions from [ aleksey-mashanov] , [ BradLarson] ,
72
+ [ compnerd] , [ erica] , [ ibrahimoktay] , and [ natecook1000] . Thank you!
73
+
57
74
## [ 0.0.6] - 2020-05-14
58
75
59
76
### Additions
@@ -203,7 +220,8 @@ This changelog's format is based on [Keep a Changelog](https://keepachangelog.co
203
220
204
221
<!-- Link references for releases -->
205
222
206
- [ Unreleased ] : https://github.com/apple/swift-argument-parser/compare/0.0.6...HEAD
223
+ [ Unreleased ] : https://github.com/apple/swift-argument-parser/compare/0.1.0...HEAD
224
+ [ 0.1.0 ] : https://github.com/apple/swift-argument-parser/compare/0.0.6...0.1.0
207
225
[ 0.0.6 ] : https://github.com/apple/swift-argument-parser/compare/0.0.5...0.0.6
208
226
[ 0.0.5 ] : https://github.com/apple/swift-argument-parser/compare/0.0.4...0.0.5
209
227
[ 0.0.4 ] : https://github.com/apple/swift-argument-parser/compare/0.0.3...0.0.4
@@ -217,14 +235,18 @@ This changelog's format is based on [Keep a Changelog](https://keepachangelog.co
217
235
218
236
<!-- Link references for contributors -->
219
237
238
+ [ aleksey-mashanov ] : https://github.com/apple/swift-argument-parser/commits?author=aleksey-mashanov
220
239
[ AliSoftware ] : https://github.com/apple/swift-argument-parser/commits?author=AliSoftware
240
+ [ BradLarson ] : https://github.com/apple/swift-argument-parser/commits?author=BradLarson
221
241
[ buttaface ] : https://github.com/apple/swift-argument-parser/commits?author=buttaface
222
242
[ compnerd ] : https://github.com/apple/swift-argument-parser/commits?author=compnerd
223
243
[ dduan ] : https://github.com/apple/swift-argument-parser/commits?author=dduan
224
244
[ elliottwilliams ] : https://github.com/apple/swift-argument-parser/commits?author=elliottwilliams
245
+ [ erica ] : https://github.com/apple/swift-argument-parser/commits?author=erica
225
246
[ glessard ] : https://github.com/apple/swift-argument-parser/commits?author=glessard
226
247
[ griffin-stewie ] : https://github.com/apple/swift-argument-parser/commits?author=griffin-stewie
227
248
[ iainsmith ] : https://github.com/apple/swift-argument-parser/commits?author=iainsmith
249
+ [ ibrahimoktay ] : https://github.com/apple/swift-argument-parser/commits?author=ibrahimoktay
228
250
[ IngmarStein ] : https://github.com/apple/swift-argument-parser/commits?author=IngmarStein
229
251
[ john-mueller ] : https://github.com/apple/swift-argument-parser/commits?author=john-mueller
230
252
[ jonathanpenn ] : https://github.com/apple/swift-argument-parser/commits?author=jonathanpenn
0 commit comments