From 3c54315ab13c6b9d337fb7c33ad7e27b92ca4a40 Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Sat, 29 Jun 2019 00:58:56 +0300 Subject: [PATCH] v14.4.1 --- package.json | 2 +- src/version.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index e756b94303..3a85cb5c3a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "14.4.0", + "version": "14.4.1", "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 540b982de8..e54e7b27b0 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.4.0'; +export const version = '14.4.1'; /** * An object containing the components of the GraphQL.js version string @@ -16,6 +16,6 @@ export const version = '14.4.0'; export const versionInfo = Object.freeze({ major: 14, minor: 4, - patch: 0, + patch: 1, preReleaseTag: null, });