diff --git a/package-lock.json b/package-lock.json index 80c57ad234..608fe591cd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "graphql", - "version": "17.0.0-rc.0", + "version": "17.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "graphql", - "version": "17.0.0-rc.0", + "version": "17.0.0", "license": "MIT", "devDependencies": { "@types/chai": "5.2.3", diff --git a/package.json b/package.json index caa673ae85..6f4d0c87fd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "graphql", - "version": "17.0.0-rc.0", + "version": "17.0.0", "description": "A Query Language and Runtime which can target any service.", "license": "MIT", "private": true, @@ -75,6 +75,6 @@ "typescript-eslint": "8.59.0" }, "publishConfig": { - "tag": "rc" + "tag": "latest" } } diff --git a/src/version.ts b/src/version.ts index ad4b015125..53135459a2 100644 --- a/src/version.ts +++ b/src/version.ts @@ -4,7 +4,7 @@ // automatically updated by "npm version" command. /** A string containing the version of the GraphQL.js library */ -export const version = '17.0.0-rc.0' as string; +export const version = '17.0.0' as string; /** An object containing the components of the GraphQL.js version string */ export const versionInfo: Readonly<{ @@ -16,5 +16,5 @@ export const versionInfo: Readonly<{ major: 17, minor: 0, patch: 0, - preReleaseTag: 'rc.0', + preReleaseTag: null, });