Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graphql",
"version": "16.14.0",
"version": "16.14.1",
"description": "A Query Language and Runtime which can target any service.",
"license": "MIT",
"private": true,
Expand Down
10 changes: 4 additions & 6 deletions resources/gen-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,15 @@ if (!versionMatch) {
const [, major, minor, patch, preReleaseTag] = versionMatch;

const body = `
/** @category Version */

// Note: This file is autogenerated using "resources/gen-version.js" script and
// automatically updated by "npm version" command.

/**
* A string containing the version of the GraphQL.js library
*/
/** A string containing the version of the GraphQL.js library */
export const version = '${version}' as string;

/**
* An object containing the components of the GraphQL.js version string
*/
/** An object containing the components of the GraphQL.js version string */
export const versionInfo = Object.freeze({
major: ${major} as number,
minor: ${minor} as number,
Expand Down
16 changes: 6 additions & 10 deletions src/version.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,15 @@
/** @category Version */

// Note: This file is autogenerated using "resources/gen-version.js" script and
// automatically updated by "npm version" command.

/**
* A string containing the version of the GraphQL.js library
* @category Version
*/
export const version = '16.14.0' as string;
/** A string containing the version of the GraphQL.js library */
export const version = '16.14.1' as string;

/**
* An object containing the components of the GraphQL.js version string
* @category Version
*/
/** An object containing the components of the GraphQL.js version string */
export const versionInfo = Object.freeze({
major: 16 as number,
minor: 14 as number,
patch: 0 as number,
patch: 1 as number,
preReleaseTag: null as string | null,
});
Loading