Skip to content

Commit d9eda1f

Browse files
committed
17.0.0-alpha.1
1 parent 75635f0 commit d9eda1f

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Diff for: package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphql",
3-
"version": "16.4.0",
3+
"version": "17.0.0-alpha.1",
44
"description": "A Query Language and Runtime which can target any service.",
55
"license": "MIT",
66
"private": true,

Diff for: src/version.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
/**
55
* A string containing the version of the GraphQL.js library
66
*/
7-
export const version = '16.4.0' as string;
7+
export const version = '17.0.0-alpha.1' as string;
88

99
/**
1010
* An object containing the components of the GraphQL.js version string
1111
*/
1212
export const versionInfo = Object.freeze({
13-
major: 16 as number,
14-
minor: 4 as number,
13+
major: 17 as number,
14+
minor: 0 as number,
1515
patch: 0 as number,
16-
preReleaseTag: null as string | null,
16+
preReleaseTag: 'alpha.1' as string | null,
1717
});

0 commit comments

Comments
 (0)