diff --git a/CHANGELOG.md b/CHANGELOG.md index dca7d08..8dd2719 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + +# [0.2.0](https://github.com/smooth-code/graphql-directive/compare/v0.1.1...v0.2.0) (2018-01-09) + + +### Features + +* add support for graphql v0.12 ([285e59d](https://github.com/smooth-code/graphql-directive/commit/285e59d)), closes [#2](https://github.com/smooth-code/graphql-directive/issues/2) + + + ## [0.1.1](https://github.com/smooth-code/graphql-directive/compare/v0.1.0...v0.1.1) (2017-12-13) diff --git a/package.json b/package.json index 7f97af7..ac132c9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql-directive", - "version": "0.1.1", + "version": "0.2.0", "main": "lib/index.js", "repository": "git@github.com:smooth-code/graphql-directive.git", "author": "Greg Bergé ", @@ -13,14 +13,12 @@ ], "license": "MIT", "scripts": { - "build": - "rm -rf lib/ && NODE_ENV=production babel src -d lib --ignore \"*.test.js\"", + "build": "rm -rf lib/ && NODE_ENV=production babel src -d lib --ignore \"*.test.js\"", "ci": "./scripts/ci.sh", "format": "prettier --write \"src/**/*.js\"", "lint": "eslint .", "prepublishOnly": "yarn build", - "release": - "yarn build && standard-version && conventional-github-releaser -p angular", + "release": "yarn build && standard-version && conventional-github-releaser -p angular", "test": "jest" }, "jest": {