From b4bff0ba9c15c9d7245dd68556e754c41f263289 Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Wed, 25 Sep 2019 17:01:15 +0300 Subject: [PATCH] v14.5.8 --- package.json | 2 +- src/version.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 932ef24aa1..876219e3c2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "14.5.7", + "version": "14.5.8", "description": "A Query Language and Runtime which can target any service.", "license": "MIT", "private": true, diff --git a/src/version.js b/src/version.js index db8ae02a29..451a16b182 100644 --- a/src/version.js +++ b/src/version.js @@ -8,7 +8,7 @@ /** * A string containing the version of the GraphQL.js library */ -export const version = '14.5.7'; +export const version = '14.5.8'; /** * An object containing the components of the GraphQL.js version string @@ -16,6 +16,6 @@ export const version = '14.5.7'; export const versionInfo = Object.freeze({ major: 14, minor: 5, - patch: 7, + patch: 8, preReleaseTag: null, });