diff --git a/package-lock.json b/package-lock.json index a86feadf71..cb1b74832a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "graphql", - "version": "15.5.3", + "version": "15.6.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "graphql", - "version": "15.5.3", + "version": "15.6.0", "license": "MIT", "devDependencies": { "@babel/core": "7.12.10", diff --git a/package.json b/package.json index c7b830c8fc..b463e66d6e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "15.5.3", + "version": "15.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 d7d18415c6..b2a4312fd9 100644 --- a/src/version.js +++ b/src/version.js @@ -6,14 +6,14 @@ /** * A string containing the version of the GraphQL.js library */ -export const version = '15.5.3'; +export const version = '15.6.0'; /** * An object containing the components of the GraphQL.js version string */ export const versionInfo = Object.freeze({ major: 15, - minor: 5, - patch: 3, + minor: 6, + patch: 0, preReleaseTag: null, });