From 383f0a2d74c2e1877bcebd4e7b41ea5fe7418ad4 Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Sat, 24 Aug 2019 03:42:17 +0300 Subject: [PATCH] v14.5.3 --- package.json | 2 +- src/version.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 5c2ce7c6c8..918eb7bbb2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "14.5.2", + "version": "14.5.3", "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 c486590536..7c7dc3d90d 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.2'; +export const version = '14.5.3'; /** * An object containing the components of the GraphQL.js version string @@ -16,6 +16,6 @@ export const version = '14.5.2'; export const versionInfo = Object.freeze({ major: 14, minor: 5, - patch: 2, + patch: 3, preReleaseTag: null, });