diff --git a/package-lock.json b/package-lock.json index e93dd3511a..070e2cce7f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "graphql", - "version": "16.14.0", + "version": "16.14.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "graphql", - "version": "16.14.0", + "version": "16.14.1", "license": "MIT", "devDependencies": { "@babel/core": "7.17.9", diff --git a/package.json b/package.json index 9195d3ac1d..0a8fcc95c7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "16.14.0", + "version": "16.14.1", "description": "A Query Language and Runtime which can target any service.", "license": "MIT", "private": true, diff --git a/resources/gen-version.js b/resources/gen-version.js index b73621bce7..93539f035d 100644 --- a/resources/gen-version.js +++ b/resources/gen-version.js @@ -12,17 +12,15 @@ if (!versionMatch) { const [, major, minor, patch, preReleaseTag] = versionMatch; const body = ` +/** @category Version */ + // Note: This file is autogenerated using "resources/gen-version.js" script and // automatically updated by "npm version" command. -/** - * A string containing the version of the GraphQL.js library - */ +/** A string containing the version of the GraphQL.js library */ export const version = '${version}' as string; -/** - * An object containing the components of the GraphQL.js version string - */ +/** An object containing the components of the GraphQL.js version string */ export const versionInfo = Object.freeze({ major: ${major} as number, minor: ${minor} as number, diff --git a/src/version.ts b/src/version.ts index b12d3b0679..94092bc133 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,19 +1,15 @@ +/** @category Version */ + // Note: This file is autogenerated using "resources/gen-version.js" script and // automatically updated by "npm version" command. -/** - * A string containing the version of the GraphQL.js library - * @category Version - */ -export const version = '16.14.0' as string; +/** A string containing the version of the GraphQL.js library */ +export const version = '16.14.1' as string; -/** - * An object containing the components of the GraphQL.js version string - * @category Version - */ +/** An object containing the components of the GraphQL.js version string */ export const versionInfo = Object.freeze({ major: 16 as number, minor: 14 as number, - patch: 0 as number, + patch: 1 as number, preReleaseTag: null as string | null, });