From 08779a044b84881fb36377272777cf42a82eb262 Mon Sep 17 00:00:00 2001 From: Benjie Gillam Date: Wed, 12 Jun 2024 15:19:41 +0100 Subject: [PATCH] 16.8.2 --- 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 df6969202d..74682729c6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "graphql", - "version": "16.8.1", + "version": "16.8.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "graphql", - "version": "16.8.1", + "version": "16.8.2", "license": "MIT", "devDependencies": { "@babel/core": "7.17.9", diff --git a/package.json b/package.json index 1ed4f378fb..199d3c7045 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "16.8.1", + "version": "16.8.2", "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 275c3e4a67..0ab817db6b 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 = '16.8.1' as string; +export const version = '16.8.2' as string; /** * An object containing the components of the GraphQL.js version string @@ -12,6 +12,6 @@ export const version = '16.8.1' as string; export const versionInfo = Object.freeze({ major: 16 as number, minor: 8 as number, - patch: 1 as number, + patch: 2 as number, preReleaseTag: null as string | null, });