Skip to content

Commit

Permalink
Release v1.21.0 (#368)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilkisiela authored Jun 22, 2019
1 parent e9ef5a8 commit bd20c81
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

### vNEXT

### v1.21.0

- **load**: allow to load schema entirely based on `git` [PR #366](https://github.com/kamilkisiela/graphql-inspector/pull/366)
- **cli**: open up for every CI solution out there! [PR #366](https://github.com/kamilkisiela/graphql-inspector/pull/366)

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM node:10-slim

LABEL version="1.20.0"
LABEL version="1.21.0"
LABEL repository="http://github.com/kamilkisiela/graphql-inspector"
LABEL homepage="http://github.com/kamilkisiela/graphql-inspector"
LABEL maintainer="Kamil Kisiela <[email protected]>"
Expand All @@ -12,7 +12,7 @@ LABEL com.github.actions.color="orange"

ENV LOG_LEVEL "debug"

RUN yarn global add @graphql-inspector/actions@1.20.0
RUN yarn global add @graphql-inspector/actions@1.21.0

COPY entrypoint.sh /entrypoint.sh

Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,16 @@ export default {
}
```

**Pointer to a Git repository**

Example:

graphql-inspector diff git:origin/master:schema.graphql

Pattern:

git:ref:path/to/file

**Pointer to a Github repository**

Example:
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"npmClient": "yarn",
"useWorkspaces": true,
"version": "1.20.0"
"version": "1.21.0"
}
10 changes: 10 additions & 0 deletions packages/cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,16 @@ export default {
}
```

**Pointer to a Git repository**

Example:

graphql-inspector diff git:origin/master:schema.graphql

Pattern:

git:ref:path/to/file

**Pointer to a Github repository**

Example:
Expand Down

0 comments on commit bd20c81

Please sign in to comment.