Skip to content

Commit 199523a

Browse files
committed
Revert "Release"
This reverts commit 9f7d75b.
1 parent 9f7d75b commit 199523a

File tree

11 files changed

+32
-32
lines changed

11 files changed

+32
-32
lines changed

packages/apollo-codegen-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "apollo-codegen-core",
33
"description": "Core generator APIs for Apollo Codegen",
4-
"version": "0.40.9-alpha.0",
4+
"version": "0.40.8",
55
"author": "Apollo GraphQL <packages@apollographql.com>",
66
"license": "MIT",
77
"repository": {

packages/apollo-codegen-flow/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "apollo-codegen-flow",
33
"description": "Flow generator module for Apollo Codegen",
4-
"version": "0.38.9-alpha.0",
4+
"version": "0.38.8",
55
"author": "Apollo GraphQL <packages@apollographql.com>",
66
"license": "MIT",
77
"repository": {

packages/apollo-codegen-scala/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "apollo-codegen-scala",
33
"description": "Scala generator module for Apollo Codegen",
4-
"version": "0.39.9-alpha.0",
4+
"version": "0.39.8",
55
"author": "Apollo GraphQL <packages@apollographql.com>",
66
"license": "MIT",
77
"repository": {

packages/apollo-codegen-swift/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "apollo-codegen-swift",
33
"description": "Swift generator module for Apollo Codegen",
4-
"version": "0.40.9-alpha.0",
4+
"version": "0.40.8",
55
"author": "Apollo GraphQL <packages@apollographql.com>",
66
"license": "MIT",
77
"repository": {

packages/apollo-codegen-typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "apollo-codegen-typescript",
33
"description": "TypeScript generator module for Apollo Codegen",
4-
"version": "0.40.9-alpha.0",
4+
"version": "0.40.8",
55
"author": "Apollo GraphQL <packages@apollographql.com>",
66
"license": "MIT",
77
"repository": {

packages/apollo-env/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "apollo-env",
3-
"version": "0.10.2-alpha.0",
3+
"version": "0.10.1",
44
"author": "packages@apollographql.com",
55
"license": "MIT",
66
"repository": {

packages/apollo-graphql/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "apollo-graphql",
3-
"version": "0.9.7-alpha.0",
3+
"version": "0.9.6",
44
"description": "Apollo GraphQL utility library",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",

packages/apollo-language-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "apollo-language-server",
33
"description": "A language server for Apollo GraphQL projects",
4-
"version": "1.26.9-alpha.0",
4+
"version": "1.26.8",
55
"author": "Apollo GraphQL <packages@apollographql.com>",
66
"license": "MIT",
77
"repository": {

packages/apollo-tools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apollographql/apollo-tools",
3-
"version": "0.5.4-alpha.0",
3+
"version": "0.5.3",
44
"author": "Apollo GraphQL <packages@apollographql.com>",
55
"license": "MIT",
66
"repository": {

packages/apollo/README.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ $ npm install -g apollo
3333
$ apollo COMMAND
3434
running command...
3535
$ apollo (-v|--version|version)
36-
apollo/2.33.11-alpha.0 darwin-arm64 node-v16.14.2
36+
apollo/2.33.10 darwin-arm64 node-v16.5.0
3737
$ apollo --help [COMMAND]
3838
USAGE
3939
$ apollo COMMAND
@@ -474,56 +474,56 @@ _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v3.2.1
474474

475475
## `apollo plugins`
476476

477-
List installed plugins.
477+
list installed plugins
478478

479479
```
480480
USAGE
481481
$ apollo plugins
482482
483483
OPTIONS
484-
--core Show core plugins.
484+
--core show core plugins
485485
486486
EXAMPLE
487487
$ apollo plugins
488488
```
489489

490-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.1.0/src/commands/plugins/index.ts)_
490+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.11/src/commands/plugins/index.ts)_
491491

492492
## `apollo plugins:inspect PLUGIN...`
493493

494-
Displays installation properties of a plugin.
494+
displays installation properties of a plugin
495495

496496
```
497497
USAGE
498498
$ apollo plugins:inspect PLUGIN...
499499
500500
ARGUMENTS
501-
PLUGIN [default: .] Plugin to inspect.
501+
PLUGIN [default: .] plugin to inspect
502502
503503
OPTIONS
504-
-h, --help Show CLI help.
504+
-h, --help show CLI help
505505
-v, --verbose
506506
507507
EXAMPLE
508508
$ apollo plugins:inspect myplugin
509509
```
510510

511-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.1.0/src/commands/plugins/inspect.ts)_
511+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.11/src/commands/plugins/inspect.ts)_
512512

513513
## `apollo plugins:install PLUGIN...`
514514

515-
Installs a plugin into the CLI.
515+
installs a plugin into the CLI
516516

517517
```
518518
USAGE
519519
$ apollo plugins:install PLUGIN...
520520
521521
ARGUMENTS
522-
PLUGIN Plugin to install.
522+
PLUGIN plugin to install
523523
524524
OPTIONS
525-
-f, --force Run yarn install with force flag.
526-
-h, --help Show CLI help.
525+
-f, --force yarn install with force flag
526+
-h, --help show CLI help
527527
-v, --verbose
528528
529529
DESCRIPTION
@@ -546,11 +546,11 @@ EXAMPLES
546546
$ apollo plugins:install someuser/someplugin
547547
```
548548

549-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.1.0/src/commands/plugins/install.ts)_
549+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.11/src/commands/plugins/install.ts)_
550550

551551
## `apollo plugins:link PLUGIN`
552552

553-
Links a plugin into the CLI for development.
553+
links a plugin into the CLI for development
554554

555555
```
556556
USAGE
@@ -560,7 +560,7 @@ ARGUMENTS
560560
PATH [default: .] path to plugin
561561
562562
OPTIONS
563-
-h, --help Show CLI help.
563+
-h, --help show CLI help
564564
-v, --verbose
565565
566566
DESCRIPTION
@@ -576,11 +576,11 @@ EXAMPLE
576576
$ apollo plugins:link myplugin
577577
```
578578

579-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.1.0/src/commands/plugins/link.ts)_
579+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.11/src/commands/plugins/link.ts)_
580580

581581
## `apollo plugins:uninstall PLUGIN...`
582582

583-
Removes a plugin from the CLI.
583+
removes a plugin from the CLI
584584

585585
```
586586
USAGE
@@ -590,30 +590,30 @@ ARGUMENTS
590590
PLUGIN plugin to uninstall
591591
592592
OPTIONS
593-
-h, --help Show CLI help.
593+
-h, --help show CLI help
594594
-v, --verbose
595595
596596
ALIASES
597597
$ apollo plugins:unlink
598598
$ apollo plugins:remove
599599
```
600600

601-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.1.0/src/commands/plugins/uninstall.ts)_
601+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.11/src/commands/plugins/uninstall.ts)_
602602

603603
## `apollo plugins:update`
604604

605-
Update installed plugins.
605+
update installed plugins
606606

607607
```
608608
USAGE
609609
$ apollo plugins:update
610610
611611
OPTIONS
612-
-h, --help Show CLI help.
612+
-h, --help show CLI help
613613
-v, --verbose
614614
```
615615

616-
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v2.1.0/src/commands/plugins/update.ts)_
616+
_See code: [@oclif/plugin-plugins](https://github.com/oclif/plugin-plugins/blob/v1.10.11/src/commands/plugins/update.ts)_
617617

618618
## `apollo service:check`
619619

packages/apollo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "apollo",
33
"description": "Command line tool for Apollo GraphQL",
4-
"version": "2.33.11-alpha.0",
4+
"version": "2.33.10",
55
"referenceID": "21ad0845-c235-422e-be7d-a998310df972",
66
"author": "Apollo GraphQL <packages@apollographql.com>",
77
"license": "MIT",

0 commit comments

Comments
 (0)