diff --git a/package-lock.json b/package-lock.json index bfd182a3ec..fe7ca8da5a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "graphql", - "version": "16.4.0", + "version": "17.0.0-alpha.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "graphql", - "version": "16.4.0", + "version": "17.0.0-alpha.1", "license": "MIT", "devDependencies": { "@docusaurus/core": "2.0.0-beta.20", diff --git a/package.json b/package.json index f5ef12cf33..4036b6b785 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "16.4.0", + "version": "17.0.0-alpha.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 121ce9b597..70e7ed0057 100644 --- a/src/version.ts +++ b/src/version.ts @@ -4,14 +4,14 @@ /** * A string containing the version of the GraphQL.js library */ -export const version = '16.4.0' as string; +export const version = '17.0.0-alpha.1' as string; /** * An object containing the components of the GraphQL.js version string */ export const versionInfo = Object.freeze({ - major: 16 as number, - minor: 4 as number, + major: 17 as number, + minor: 0 as number, patch: 0 as number, - preReleaseTag: null as string | null, + preReleaseTag: 'alpha.1' as string | null, });