From 43cb627d345389ee3cef51802449693be2db14fb Mon Sep 17 00:00:00 2001 From: Yaacov Rydzinski Date: Tue, 24 Feb 2026 13:43:58 +0200 Subject: [PATCH] 17.0.0-alpha.10 --- 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 6a3a2dc1e1..5c61800ab3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "graphql", - "version": "17.0.0-alpha.9", + "version": "17.0.0-alpha.10", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "graphql", - "version": "17.0.0-alpha.9", + "version": "17.0.0-alpha.10", "license": "MIT", "devDependencies": { "@swc/core": "1.15.11", diff --git a/package.json b/package.json index 9e7e3090c3..5baaa2f280 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "17.0.0-alpha.9", + "version": "17.0.0-alpha.10", "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 26c17bced0..2e5822f1d9 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.9' as string; +export const version = '17.0.0-alpha.10' 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.9' as string | null, + preReleaseTag: 'alpha.10' as string | null, });