diff --git a/package.json b/package.json index 6782b52c29..b72e809b97 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 a5654311ad..540b982de8 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: 4, + patch: 0, preReleaseTag: null, });