From 278bde0a5cd71008452b555065f19dcd1160270a Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Thu, 2 Apr 2020 17:43:20 +0300 Subject: [PATCH] v15.0.0 --- package.json | 2 +- src/version.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index ed62ae31e5..7ef13341fe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "15.0.0-rc.2", + "version": "15.0.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 fa19a5f91c..df61f772fc 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 = '15.0.0-rc.2'; +export const version = '15.0.0'; /** * An object containing the components of the GraphQL.js version string @@ -17,5 +17,5 @@ export const versionInfo = Object.freeze({ major: 15, minor: 0, patch: 0, - preReleaseTag: 'rc.2', + preReleaseTag: null, });