diff --git a/centrifuge-react/CHANGELOG.md b/centrifuge-react/CHANGELOG.md index 7aacd8042a..07b202b13b 100644 --- a/centrifuge-react/CHANGELOG.md +++ b/centrifuge-react/CHANGELOG.md @@ -2,6 +2,24 @@ 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. +## 0.2.0 (2023-10-03) + + +### ⚠ BREAKING CHANGES + +* **centrifuge-js:** Centrifuge->getChainId() now returns a Promise + +### Features + +* implement global onboarding status endpoint ([#1364](https://github.com/centrifuge/apps/issues/1364)) ([b64db29](https://github.com/centrifuge/apps/commit/b64db2904ad670aa012bb9a69396bf28ab31d5d7)) + + +### Bug Fixes + +* autoconnect wallet when visiting through gnosis safe app ([#1375](https://github.com/centrifuge/apps/issues/1375)) ([0991b30](https://github.com/centrifuge/apps/commit/0991b30ee0ffead4b1799496f49a7401c6371a14)) +* **centrifuge-js:** Get chain ID from chain ([#1535](https://github.com/centrifuge/apps/issues/1535)) ([e36462f](https://github.com/centrifuge/apps/commit/e36462fcc58589830f9fb9a68e0ba11302b1eb6e)) +* **centrifuge-react:** Add useBalances hook ([#1092](https://github.com/centrifuge/apps/issues/1092)) ([2eef4e1](https://github.com/centrifuge/apps/commit/2eef4e133cac560f62b6db0023b23875563e03cf)) + ### [0.1.1](https://github.com/centrifuge/apps/compare/centrifuge-react/v0.1.0...centrifuge-react/v0.1.1) (2023-09-28) diff --git a/centrifuge-react/package.json b/centrifuge-react/package.json index 8a3992671f..711fbde885 100644 --- a/centrifuge-react/package.json +++ b/centrifuge-react/package.json @@ -1,6 +1,6 @@ { "name": "@centrifuge/centrifuge-react", - "version": "0.1.1", + "version": "0.2.0", "description": "Centrifuge React Library", "main": "./dist/index.js", "typings": "./dist/index.d.ts", @@ -9,7 +9,8 @@ ], "scripts": { "build": "tsc", - "prepare": "yarn build", + "build:deps": "cd ../centrifuge-js && yarn build && cd ../fabric && yarn build && cd ../centrifuge-react", + "prepare": "yarn build:deps && yarn build", "bump": "standard-version --sign", "storybook": "start-storybook -p 6006", "build-storybook": "build-storybook",