diff --git a/package-lock.json b/package-lock.json index 04ed67f22a..912e85b93d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "graphql", - "version": "16.0.0-rc.6", + "version": "16.0.0-rc.7", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "graphql", - "version": "16.0.0-rc.6", + "version": "16.0.0-rc.7", "license": "MIT", "devDependencies": { "@babel/core": "7.15.8", diff --git a/package.json b/package.json index e4887467ea..ea26da39c3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "16.0.0-rc.6", + "version": "16.0.0-rc.7", "description": "A Query Language and Runtime which can target any service.", "license": "MIT", "private": true, diff --git a/src/version.ts b/src/version.ts index 7c0e49176e..8adb01a97c 100644 --- a/src/version.ts +++ b/src/version.ts @@ -4,7 +4,7 @@ /** * A string containing the version of the GraphQL.js library */ -export const version = '16.0.0-rc.6'; +export const version = '16.0.0-rc.7'; /** * An object containing the components of the GraphQL.js version string @@ -13,5 +13,5 @@ export const versionInfo = Object.freeze({ major: 16, minor: 0, patch: 0, - preReleaseTag: 'rc.6', + preReleaseTag: 'rc.7', });