From e7509a6a3f724d5cf33f3b1fb7fa9f306d87a513 Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Wed, 26 Jun 2019 19:24:59 +0300 Subject: [PATCH] v14.4.0 --- package.json | 2 +- src/version.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 6782b52c29c..b72e809b97b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "14.3.1", + "version": "14.4.0", "description": "A Query Language and Runtime which can target any service.", "license": "MIT", "main": "index", diff --git a/src/version.js b/src/version.js index a5654311ad4..00c7e916616 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.3.1'; +export const version = '14.4.0'; /** * An object containing the components of the GraphQL.js version string */ export const versionInfo = Object.freeze({ major: 14, - minor: 3, - patch: 1, + minor: 0, + patch: 0, preReleaseTag: null, });