From 8d7c8fccf5a9846a50785de04abda58a7eb13fc0 Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Wed, 6 Sep 2023 18:34:43 +0300 Subject: [PATCH] 17.0.0-alpha.3 --- package-lock.json | 4 ++-- package.json | 2 +- src/version.ts | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index ee5a5a3f61..a8d94f9a0f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "graphql", - "version": "17.0.0-alpha.2", + "version": "17.0.0-alpha.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "graphql", - "version": "17.0.0-alpha.2", + "version": "17.0.0-alpha.3", "license": "MIT", "devDependencies": { "@docusaurus/core": "2.4.0", diff --git a/package.json b/package.json index d24ac24dcc..ddbe86a997 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "17.0.0-alpha.2", + "version": "17.0.0-alpha.3", "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 67a5755cf9..a12213bc7e 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.2' as string; +export const version = '17.0.0-alpha.3' as string; /** * An object containing the components of the GraphQL.js version string @@ -13,5 +13,5 @@ export const versionInfo = Object.freeze({ major: 17 as number, minor: 0 as number, patch: 0 as number, - preReleaseTag: 'alpha.2' as string | null, + preReleaseTag: 'alpha.3' as string | null, });