From 7b389be745eaeda2a4f9ca33a3db93717f21447e Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Thu, 22 Aug 2019 13:37:10 +0300 Subject: [PATCH] v14.5.0 --- package.json | 2 +- src/version.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 5314189cb9..be2674d4d2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "14.4.2", + "version": "14.5.0", "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 e399104bb1..1e3f183330 100644 --- a/src/version.js +++ b/src/version.js @@ -8,14 +8,14 @@ /** * A string containing the version of the GraphQL.js library */ -export const version = '14.4.2'; +export const version = '14.5.0'; /** * An object containing the components of the GraphQL.js version string */ export const versionInfo = Object.freeze({ major: 14, - minor: 4, - patch: 2, + minor: 5, + patch: 0, preReleaseTag: null, });