graphql 16.13.0 → 16.13.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphql",
3
- "version": "16.13.0",
3
+ "version": "16.13.1",
4
4
  "description": "A Query Language and Runtime which can target any service.",
5
5
  "license": "MIT",
6
6
  "main": "index",
package/version.js CHANGED
@@ -10,7 +10,7 @@ exports.versionInfo = exports.version = void 0;
10
10
  /**
11
11
  * A string containing the version of the GraphQL.js library
12
12
  */
13
- const version = '16.13.0';
13
+ const version = '16.13.1';
14
14
  /**
15
15
  * An object containing the components of the GraphQL.js version string
16
16
  */
@@ -19,7 +19,7 @@ exports.version = version;
19
19
  const versionInfo = Object.freeze({
20
20
  major: 16,
21
21
  minor: 13,
22
- patch: 0,
22
+ patch: 1,
23
23
  preReleaseTag: null,
24
24
  });
25
25
  exports.versionInfo = versionInfo;
package/version.mjs CHANGED
@@ -4,7 +4,7 @@
4
4
  /**
5
5
  * A string containing the version of the GraphQL.js library
6
6
  */
7
- export const version = '16.13.0';
7
+ export const version = '16.13.1';
8
8
  /**
9
9
  * An object containing the components of the GraphQL.js version string
10
10
  */
@@ -12,6 +12,6 @@ export const version = '16.13.0';
12
12
  export const versionInfo = Object.freeze({
13
13
  major: 16,
14
14
  minor: 13,
15
- patch: 0,
15
+ patch: 1,
16
16
  preReleaseTag: null,
17
17
  });