File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
7
8
8
## Unreleased
9
9
10
+ ### Fixed
11
+
12
+ - In the CLI, both --selected-operation and --output used the -o shorthand. --output now uses -out.
13
+
10
14
## 0.7.0 - 2019-03-21
11
15
12
16
### Changed
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " graphql_client_cli"
3
3
description = " The CLI for graphql-client"
4
- version = " 0.7.0 "
4
+ version = " 0.7.1 "
5
5
authors = [
" Tom Houlé <[email protected] >" ]
6
6
license = " Apache-2.0 OR MIT"
7
7
repository = " https://github.com/graphql-rust/graphql-client"
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ enum Cli {
71
71
///
72
72
/// If this option is omitted, the code will be generated next to the .graphql
73
73
/// file, with the same name and the .rs extension.
74
- #[ structopt( short = "o " , long = "output-directory" ) ]
74
+ #[ structopt( short = "out " , long = "output-directory" ) ]
75
75
output_directory : Option < PathBuf > ,
76
76
} ,
77
77
}
You can’t perform that action at this time.
0 commit comments