From 1519fda27376bcdd26b433aecfb9e7b485da71f8 Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Wed, 21 Jun 2023 19:27:33 +0300 Subject: [PATCH] 16.7.0 --- 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 1a7bfea8b3..fc7c4c9680 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "graphql", - "version": "16.6.0", + "version": "16.7.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "graphql", - "version": "16.6.0", + "version": "16.7.0", "license": "MIT", "devDependencies": { "@babel/core": "7.17.9", diff --git a/package.json b/package.json index 8ac82541b7..f3466e2735 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "16.6.0", + "version": "16.7.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 d5662a10f5..b7cf1e898c 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.6.0' as string; +export const version = '16.7.0' as string; /** * An object containing the components of the GraphQL.js version string */ export const versionInfo = Object.freeze({ major: 16 as number, - minor: 6 as number, + minor: 7 as number, patch: 0 as number, preReleaseTag: null as string | null, });