diff --git a/package.json b/package.json index 876219e3c2..dca6472e30 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "14.5.8", + "version": "14.6.0", "description": "A Query Language and Runtime which can target any service.", "license": "MIT", "private": true, diff --git a/src/version.js b/src/version.js index 451a16b182..80b40cea88 100644 --- a/src/version.js +++ b/src/version.js @@ -8,14 +8,14 @@ /** * A string containing the version of the GraphQL.js library */ -export const version = '14.5.8'; +export const version = '14.6.0'; /** * An object containing the components of the GraphQL.js version string */ export const versionInfo = Object.freeze({ major: 14, - minor: 5, - patch: 8, + minor: 6, + patch: 0, preReleaseTag: null, });