diff --git a/CHANGELOG.md b/CHANGELOG.md index 84b5a70088..3cd428e113 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ### vNEXT +### v0.11.0 + - **cli**: Make `--require` accept multiple values `--require a --require b` [PR #67](https://github.com/kamilkisiela/graphql-inspector/pull/67) - **cli**: Fix `--require` not loading modules [PR #67](https://github.com/kamilkisiela/graphql-inspector/pull/67) - **github**: Use message as a title and reason as a message [PR #67](https://github.com/kamilkisiela/graphql-inspector/pull/67) diff --git a/Dockerfile b/Dockerfile index ece1252fdc..b945a8bbc6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM node:10-slim -LABEL version="0.10.0" +LABEL version="0.11.0" LABEL repository="http://github.com/kamilkisiela/graphql-inspector" LABEL homepage="http://github.com/kamilkisiela/graphql-inspector" LABEL maintainer="Kamil Kisiela " @@ -12,7 +12,7 @@ LABEL com.github.actions.color="orange" ENV LOG_LEVEL "debug" -RUN yarn global add @graphql-inspector/actions@0.10.0 +RUN yarn global add @graphql-inspector/actions@0.11.0 COPY entrypoint.sh /entrypoint.sh diff --git a/lerna.json b/lerna.json index 9c8d985c61..a2f8fac671 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { "npmClient": "yarn", "useWorkspaces": true, - "version": "0.10.0" + "version": "0.11.0" }