diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000000..dc7d16e6fb --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,11 @@ +# Change log + +### vNEXT + +### v0.10.0 + +- **github**: Uses path as a title and includes a reason [PR #65](https://github.com/kamilkisiela/graphql-inspector/pull/65) + +### v0.9.0 + +Initial release. We didn't track changes before this version. diff --git a/Dockerfile b/Dockerfile index 043fceef5a..ece1252fdc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM node:10-slim -LABEL version="0.9.0" +LABEL version="0.10.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.9.0 +RUN yarn global add @graphql-inspector/actions@0.10.0 COPY entrypoint.sh /entrypoint.sh diff --git a/lerna.json b/lerna.json index b5b293c8ba..9c8d985c61 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { "npmClient": "yarn", "useWorkspaces": true, - "version": "0.9.0" + "version": "0.10.0" }