Skip to content

Commit d8e5519

Browse files
committed
Merge remote-tracking branch 'upstream/master' into 2018-edition
2 parents 98f52d2 + ae6d911 commit d8e5519

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## Unreleased
99

10-
## 0.8.0 - 2019-03-23
10+
## 0.8.0
11+
1112
This release is only compatible with Rust 1.31.0 and later.
1213

14+
## 0.7.1
15+
16+
### Fixed
17+
18+
- In the CLI, both --selected-operation and --output used the -o shorthand. --output now uses -out.
19+
>>>>>>> upstream/master
20+
1321
## 0.7.0 - 2019-03-21
1422

1523
### Changed

graphql_client_cli/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ enum Cli {
7171
///
7272
/// If this option is omitted, the code will be generated next to the .graphql
7373
/// file, with the same name and the .rs extension.
74-
#[structopt(short = "o", long = "output-directory")]
74+
#[structopt(short = "out", long = "output-directory")]
7575
output_directory: Option<PathBuf>,
7676
},
7777
}

0 commit comments

Comments
 (0)