diff --git a/package-lock.json b/package-lock.json index fc7c4c9680..92d12a2926 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "graphql", - "version": "16.7.0", + "version": "16.7.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "graphql", - "version": "16.7.0", + "version": "16.7.1", "license": "MIT", "devDependencies": { "@babel/core": "7.17.9", diff --git a/package.json b/package.json index f3466e2735..6ba956ff75 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "16.7.0", + "version": "16.7.1", "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 b7cf1e898c..623bb83c25 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.7.0' as string; +export const version = '16.7.1' as string; /** * An object containing the components of the GraphQL.js version string @@ -12,6 +12,6 @@ export const version = '16.7.0' as string; export const versionInfo = Object.freeze({ major: 16 as number, minor: 7 as number, - patch: 0 as number, + patch: 1 as number, preReleaseTag: null as string | null, });