diff --git a/.changeset/quick-bats-teach.md b/.changeset/quick-bats-teach.md deleted file mode 100644 index c2cc4486..00000000 --- a/.changeset/quick-bats-teach.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@graphprotocol/graph-cli': minor -'@graphprotocol/graph-ts': minor ---- - -Add support for subgraph datasource and associated types. diff --git a/.changeset/wise-crews-study.md b/.changeset/wise-crews-study.md deleted file mode 100644 index add37fdb..00000000 --- a/.changeset/wise-crews-study.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@graphprotocol/graph-cli": minor ---- - -added rpc and api urls for botanix-testnet diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index e156ca81..40d16ff4 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,19 @@ # @graphprotocol/graph-cli +## 0.91.0 + +### Minor Changes + +- [#1754](https://github.com/graphprotocol/graph-tooling/pull/1754) + [`2050bf6`](https://github.com/graphprotocol/graph-tooling/commit/2050bf6259c19bd86a7446410c7e124dfaddf4cd) + Thanks [@incrypto32](https://github.com/incrypto32)! - Add support for subgraph datasource and + associated types. + +- [#1781](https://github.com/graphprotocol/graph-tooling/pull/1781) + [`e8218ee`](https://github.com/graphprotocol/graph-tooling/commit/e8218eedec4292a95957efc5cadcbcf5280c0375) + Thanks [@alinobrasil](https://github.com/alinobrasil)! - added rpc and api urls for + botanix-testnet + ## 0.90.1 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 7999e3e9..3fe3940f 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@graphprotocol/graph-cli", - "version": "0.90.1", + "version": "0.91.0", "description": "CLI for building for and deploying to The Graph", "license": "(Apache-2.0 OR MIT)", "engines": { diff --git a/packages/cli/src/commands/codegen.ts b/packages/cli/src/commands/codegen.ts index e53f3c8f..bf6065d9 100644 --- a/packages/cli/src/commands/codegen.ts +++ b/packages/cli/src/commands/codegen.ts @@ -43,6 +43,7 @@ export default class CodegenCommand extends Command { summary: 'IPFS node to use for fetching subgraph data.', char: 'i', default: DEFAULT_IPFS_URL, + hidden: true }), 'uncrashable-config': Flags.file({ summary: 'Directory for uncrashable config.', diff --git a/packages/cli/src/commands/init.ts b/packages/cli/src/commands/init.ts index e7f8949c..6138252d 100644 --- a/packages/cli/src/commands/init.ts +++ b/packages/cli/src/commands/init.ts @@ -159,6 +159,7 @@ export default class InitCommand extends Command { summary: 'IPFS node to use for fetching subgraph data.', char: 'i', default: DEFAULT_IPFS_URL, + hidden: true }), }; diff --git a/packages/ts/CHANGELOG.md b/packages/ts/CHANGELOG.md index 1b11f2a6..60cac0c8 100644 --- a/packages/ts/CHANGELOG.md +++ b/packages/ts/CHANGELOG.md @@ -1,5 +1,14 @@ # @graphprotocol/graph-ts +## 0.36.0 + +### Minor Changes + +- [#1754](https://github.com/graphprotocol/graph-tooling/pull/1754) + [`2050bf6`](https://github.com/graphprotocol/graph-tooling/commit/2050bf6259c19bd86a7446410c7e124dfaddf4cd) + Thanks [@incrypto32](https://github.com/incrypto32)! - Add support for subgraph datasource and + associated types. + ## 0.35.1 ### Patch Changes diff --git a/packages/ts/package.json b/packages/ts/package.json index 090c545b..cc5b5a7b 100644 --- a/packages/ts/package.json +++ b/packages/ts/package.json @@ -1,6 +1,6 @@ { "name": "@graphprotocol/graph-ts", - "version": "0.35.1", + "version": "0.36.0", "description": "TypeScript/AssemblyScript library for writing subgraph mappings for The Graph", "main": "index.ts", "module": "index.ts",