diff --git a/package-lock.json b/package-lock.json index 7ebfaffaa9..5695d63c7c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "graphql", - "version": "16.0.0-alpha.1", + "version": "16.0.0-alpha.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "graphql", - "version": "16.0.0-alpha.1", + "version": "16.0.0-alpha.2", "license": "MIT", "devDependencies": { "@babel/core": "7.14.0", diff --git a/package.json b/package.json index 0438540d26..83a417541f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "16.0.0-alpha.1", + "version": "16.0.0-alpha.2", "description": "A Query Language and Runtime which can target any service.", "license": "MIT", "private": true, diff --git a/src/version.js b/src/version.js index bf7357c919..1f0ef3b950 100644 --- a/src/version.js +++ b/src/version.js @@ -4,7 +4,7 @@ /** * A string containing the version of the GraphQL.js library */ -export const version = '16.0.0-alpha.1'; +export const version = '16.0.0-alpha.2'; /** * 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: 'alpha.1', + preReleaseTag: 'alpha.2', });