Skip to content

Commit

Permalink
v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Le Cam committed Nov 29, 2016
1 parent c1169a6 commit 6361398
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.3.0 (2016-11-29)

Add `sort` option to sort fields keys

## v0.2.0 (2016-11-14)

Update GraphQL to v0.8.1
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ graphql-fetch-schema <url> [options]
-g, --graphql write schema.graphql file
-j, --json write schema.json file
-o, --output <directory> write to specified directory
-s, --sort sort field keys
```

### API usage
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graphql-fetch-schema",
"version": "0.2.0",
"version": "0.3.0",
"description": "Fetch a GraphQL schema from a server and write it to file",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const run = async (url: string, options: Object) => {
}

program
.version('0.1.0')
.version('0.3.0')
.usage('<url> [options]')
.option('-g, --graphql', 'write schema.graphql file')
.option('-j, --json', 'write schema.json file')
Expand Down

0 comments on commit 6361398

Please sign in to comment.