From 829acf01c0e38add817f0ab7af51b58bb6567054 Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Sun, 20 Jun 2021 11:43:24 +0300 Subject: [PATCH] 16.0.0-alpha.5 --- 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 5fd0186882..5f54d219d1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "graphql", - "version": "16.0.0-alpha.4", + "version": "16.0.0-alpha.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "graphql", - "version": "16.0.0-alpha.4", + "version": "16.0.0-alpha.5", "license": "MIT", "devDependencies": { "@babel/core": "7.14.3", diff --git a/package.json b/package.json index c4d4127a20..edc5793e9d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "16.0.0-alpha.4", + "version": "16.0.0-alpha.5", "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 f38bd67e33..589ee0b203 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.0.0-alpha.4'; +export const version = '16.0.0-alpha.5'; /** * An object containing the components of the GraphQL.js version string @@ -13,5 +13,5 @@ export const versionInfo = Object.freeze({ major: 16, minor: 0, patch: 0, - preReleaseTag: 'alpha.4', + preReleaseTag: 'alpha.5', });