From 556a01e33ec2dad5529d7d6f84aab3f8f68f1f1d Mon Sep 17 00:00:00 2001 From: Benjie Gillam Date: Fri, 21 Jun 2024 15:54:48 +0100 Subject: [PATCH] 16.9.0 --- package-lock.json | 4 ++-- package.json | 2 +- src/version.ts | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 74682729c6..f26f98ef19 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "graphql", - "version": "16.8.2", + "version": "16.9.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "graphql", - "version": "16.8.2", + "version": "16.9.0", "license": "MIT", "devDependencies": { "@babel/core": "7.17.9", diff --git a/package.json b/package.json index 199d3c7045..85a6688a83 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "16.8.2", + "version": "16.9.0", "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 0ab817db6b..05919be704 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.8.2' as string; +export const version = '16.9.0' as string; /** * An object containing the components of the GraphQL.js version string */ export const versionInfo = Object.freeze({ major: 16 as number, - minor: 8 as number, - patch: 2 as number, + minor: 9 as number, + patch: 0 as number, preReleaseTag: null as string | null, });