diff --git a/CHANGELOG.md b/CHANGELOG.md index ba167310..a9482dab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [2.10.57](https://github.com/boardroom-inc/protocol-Info/compare/v2.10.56...v2.10.57) (2022-07-21) + ### [2.10.56](https://github.com/boardroom-inc/protocol-Info/compare/v2.10.55...v2.10.56) (2022-07-21) ### [2.10.55](https://github.com/boardroom-inc/protocol-Info/compare/v2.10.54...v2.10.55) (2022-07-19) diff --git a/package-lock.json b/package-lock.json index bfde452c..427593b9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@boardroom/protocol-info", - "version": "2.10.56", + "version": "2.10.57", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@boardroom/protocol-info", - "version": "2.10.56", + "version": "2.10.57", "license": "MIT", "dependencies": { "axios": "^0.21.1", diff --git a/package.json b/package.json index 88f343f9..375b921f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@boardroom/protocol-info", - "version": "2.10.56", + "version": "2.10.57", "description": "Project information which will be served to display on the Boardroom Governance Portal.", "main": "dist/index.js", "typings": "dist/index.d.ts", diff --git a/protocols/__example/index.json b/protocols/__example/index.json index 0ec007c7..2de0c902 100644 --- a/protocols/__example/index.json +++ b/protocols/__example/index.json @@ -5,7 +5,8 @@ "isEnabled": true, "discourseForum": { "url": "", - "categoryId": "" + "categoryId": "", + "useCategoryId": false }, "treasuryAddresses": [""], "type": "" diff --git a/types.ts b/types.ts index 961beb11..ca245af4 100644 --- a/types.ts +++ b/types.ts @@ -11,6 +11,7 @@ export const ProtocolIo = t.type({ t.partial({ url: t.string, categoryId: t.string, + useCategoryId: t.boolean }), t.undefined, ]),