From 0d2220f0a64238473f4e1c9aa8f73f891d0fd3e0 Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Thu, 29 Aug 2019 15:37:35 +0300 Subject: [PATCH] v14.5.4 --- package.json | 2 +- src/version.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 5b1553ed00..c173a4b629 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "14.5.3", + "version": "14.5.4", "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 7c7dc3d90d..432d839306 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.3'; +export const version = '14.5.4'; /** * An object containing the components of the GraphQL.js version string @@ -16,6 +16,6 @@ export const version = '14.5.3'; export const versionInfo = Object.freeze({ major: 14, minor: 5, - patch: 3, + patch: 4, preReleaseTag: null, });