@graphprotocol/hypergraph 0.5.0-alpha.3 → 0.6.0

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/dist/cli/Cli.js CHANGED
@@ -3,6 +3,6 @@ import { typesync } from './subcommands/typesync.js';
3
3
  const hypergraph = /*#__PURE__*/Command.make('hypergraph').pipe(/*#__PURE__*/Command.withDescription('Hypergraph command line interface for building and interacting with @graphprotocol/hypergraph schemas'), /*#__PURE__*/Command.withSubcommands([typesync]));
4
4
  export const run = /*#__PURE__*/Command.run(hypergraph, {
5
5
  name: 'hypergraph',
6
- version: '0.5.0-alpha.3'
6
+ version: '0.6.0'
7
7
  });
8
8
  //# sourceMappingURL=Cli.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphprotocol/hypergraph",
3
- "version": "0.5.0-alpha.3",
3
+ "version": "0.6.0",
4
4
  "description": "SDK for building performant, type-safe, local-first dapps on top of The Graph ecosystem knowledge graphs.",
5
5
  "repository": {
6
6
  "type": "git",
package/src/cli/Cli.ts CHANGED
@@ -11,5 +11,5 @@ const hypergraph = Command.make('hypergraph').pipe(
11
11
 
12
12
  export const run = Command.run(hypergraph, {
13
13
  name: 'hypergraph',
14
- version: '0.5.0-alpha.3',
14
+ version: '0.6.0',
15
15
  });