Skip to content

Commit

Permalink
17.0.0-alpha.1
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov committed May 19, 2022
1 parent 75635f0 commit d9eda1f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
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
@@ -1,6 +1,6 @@
{
"name": "graphql",
"version": "16.4.0",
"version": "17.0.0-alpha.1",
"description": "A Query Language and Runtime which can target any service.",
"license": "MIT",
"private": true,
Expand Down
8 changes: 4 additions & 4 deletions src/version.ts
Expand Up @@ -4,14 +4,14 @@
/**
* A string containing the version of the GraphQL.js library
*/
export const version = '16.4.0' as string;
export const version = '17.0.0-alpha.1' as string;

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

0 comments on commit d9eda1f

Please sign in to comment.