diff --git a/package-lock.json b/package-lock.json index bd152a6dbf..5e3ab15cbd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "graphql", - "version": "17.0.0-alpha.13", + "version": "17.0.0-alpha.14", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "graphql", - "version": "17.0.0-alpha.13", + "version": "17.0.0-alpha.14", "license": "MIT", "devDependencies": { "@swc/core": "1.15.11", diff --git a/package.json b/package.json index 0c868305ec..7ab226d6ad 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "17.0.0-alpha.13", + "version": "17.0.0-alpha.14", "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 5ccce4d43b..51111dc224 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 = '17.0.0-alpha.13' as string; +export const version = '17.0.0-alpha.14' as string; /** * An object containing the components of the GraphQL.js version string @@ -18,5 +18,5 @@ export const versionInfo: Readonly<{ major: 17 as number, minor: 0 as number, patch: 0 as number, - preReleaseTag: 'alpha.13' as string | null, + preReleaseTag: 'alpha.14' as string | null, });