diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 6083963c9f1..343294ea9ef 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,13 +1,13 @@ { - ".": "0.22.0", + ".": "0.23.0", "packages/branding": "0.3.0", "packages/bridge-ui": "0.10.1", - "packages/bridge-ui-v2": "2.8.0", - "packages/eventindexer": "0.12.0", + "packages/bridge-ui-v2": "2.9.0", + "packages/eventindexer": "0.13.0", "packages/fork-diff": "0.4.0", - "packages/protocol": "0.15.1", - "packages/relayer": "0.11.0", + "packages/protocol": "0.15.2", + "packages/relayer": "0.12.0", "packages/status-page": "0.12.0", - "packages/website": "0.17.0", + "packages/website": "0.18.0", "packages/whitepaper": "1.4.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 91b61da9129..4214fdcc087 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## [0.23.0](https://github.com/taikoxyz/taiko-mono/compare/taiko-mono-v0.22.0...taiko-mono-v0.23.0) (2023-10-18) + + +### Features + +* **bridge-ui-v2:** dynamic import of NFT data via API ([#14928](https://github.com/taikoxyz/taiko-mono/issues/14928)) ([946c337](https://github.com/taikoxyz/taiko-mono/commit/946c337070eb2f2a9a2aa1f7314d7469ccd1b818)) +* **bridge-ui-v2:** manual NFT import step ([#14842](https://github.com/taikoxyz/taiko-mono/issues/14842)) ([c85e162](https://github.com/taikoxyz/taiko-mono/commit/c85e1629d0b9b544880f65f0e4050456579c87d1)) +* **bridge-ui-v2:** NFT bridging ([#14949](https://github.com/taikoxyz/taiko-mono/issues/14949)) ([36c5ccd](https://github.com/taikoxyz/taiko-mono/commit/36c5ccda09e0d7ef062aff33e98548314486e437)) +* **bridge-ui-v2:** review step ([#14940](https://github.com/taikoxyz/taiko-mono/issues/14940)) ([c079223](https://github.com/taikoxyz/taiko-mono/commit/c0792230bab8c245ad3b779f695a7bdd0f598fc8)) +* **eventindexer:** API documentation, swagger, github pages ([#14948](https://github.com/taikoxyz/taiko-mono/issues/14948)) ([5455267](https://github.com/taikoxyz/taiko-mono/commit/54552674fe8a6b0b4321afe1ef4d90d00d62f0e8)) +* **website:** add covalent to ecosystem ([#14908](https://github.com/taikoxyz/taiko-mono/issues/14908)) ([9cc4db3](https://github.com/taikoxyz/taiko-mono/commit/9cc4db3ec8e59a619e8135f48d9af9a936325e82)) +* **website:** remove swap tokens guide ([#14897](https://github.com/taikoxyz/taiko-mono/issues/14897)) ([7dbf44c](https://github.com/taikoxyz/taiko-mono/commit/7dbf44c8ad1d0d1c67bf424d3f45ec6b2547465c)) +* **website:** update `prover-market-page.mdx` ([#14978](https://github.com/taikoxyz/taiko-mono/issues/14978)) ([ffa2365](https://github.com/taikoxyz/taiko-mono/commit/ffa2365560a49bf39741ca1840731485eff10c1a)) +* **website:** update Rubic on ecosystem page ([#14933](https://github.com/taikoxyz/taiko-mono/issues/14933)) ([d1f6bef](https://github.com/taikoxyz/taiko-mono/commit/d1f6beffe020fe1171279cd5279ef08643a70d84)) +* **webste:** add pixelswap and superscalar to ecosystem ([#14961](https://github.com/taikoxyz/taiko-mono/issues/14961)) ([f47509f](https://github.com/taikoxyz/taiko-mono/commit/f47509f8ca66f1e1fe6af4565472b023cb24e1cf)) + + +### Bug Fixes + +* **eventindexer:** update config tests ([#14912](https://github.com/taikoxyz/taiko-mono/issues/14912)) ([beab49b](https://github.com/taikoxyz/taiko-mono/commit/beab49bd8f085b1e285fb3a16e9b493f3c5f5932)) +* **eventindexer:** upodate indexnfts flag to bool ([#14905](https://github.com/taikoxyz/taiko-mono/issues/14905)) ([a4a982e](https://github.com/taikoxyz/taiko-mono/commit/a4a982ec15a11f207c5b14c3a0b5fb2caffd2c1b)) +* **protocol:** fix a bug reported by Quillaudit ([#14938](https://github.com/taikoxyz/taiko-mono/issues/14938)) ([99b200b](https://github.com/taikoxyz/taiko-mono/commit/99b200bad93bcee0d0c9441d0393b2aa48636017)) +* **relayer:** ERC1155 bridging, amount => amounts ([#14959](https://github.com/taikoxyz/taiko-mono/issues/14959)) ([d42c59d](https://github.com/taikoxyz/taiko-mono/commit/d42c59d5150c9c41941458e25fac75121d73da76)) + ## [0.22.0](https://github.com/taikoxyz/taiko-mono/compare/taiko-mono-v0.21.0...taiko-mono-v0.22.0) (2023-10-03) diff --git a/package.json b/package.json index feb95959967..bc14f771b3a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "taiko-mono", - "version": "0.22.0", + "version": "0.23.0", "private": true, "devDependencies": { "lefthook": "^1.4.7", diff --git a/packages/bridge-ui-v2/CHANGELOG.md b/packages/bridge-ui-v2/CHANGELOG.md index 715ce82d1e8..0c120efe35b 100644 --- a/packages/bridge-ui-v2/CHANGELOG.md +++ b/packages/bridge-ui-v2/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [2.9.0](https://github.com/taikoxyz/taiko-mono/compare/bridge-ui-v2-v2.8.0...bridge-ui-v2-v2.9.0) (2023-10-18) + + +### Features + +* **bridge-ui-v2:** dynamic import of NFT data via API ([#14928](https://github.com/taikoxyz/taiko-mono/issues/14928)) ([946c337](https://github.com/taikoxyz/taiko-mono/commit/946c337070eb2f2a9a2aa1f7314d7469ccd1b818)) +* **bridge-ui-v2:** manual NFT import step ([#14842](https://github.com/taikoxyz/taiko-mono/issues/14842)) ([c85e162](https://github.com/taikoxyz/taiko-mono/commit/c85e1629d0b9b544880f65f0e4050456579c87d1)) +* **bridge-ui-v2:** NFT bridging ([#14949](https://github.com/taikoxyz/taiko-mono/issues/14949)) ([36c5ccd](https://github.com/taikoxyz/taiko-mono/commit/36c5ccda09e0d7ef062aff33e98548314486e437)) +* **bridge-ui-v2:** review step ([#14940](https://github.com/taikoxyz/taiko-mono/issues/14940)) ([c079223](https://github.com/taikoxyz/taiko-mono/commit/c0792230bab8c245ad3b779f695a7bdd0f598fc8)) + ## [2.8.0](https://github.com/taikoxyz/taiko-mono/compare/bridge-ui-v2-v2.7.0...bridge-ui-v2-v2.8.0) (2023-10-03) diff --git a/packages/bridge-ui-v2/package.json b/packages/bridge-ui-v2/package.json index ce189d20be7..dfbf451cc27 100644 --- a/packages/bridge-ui-v2/package.json +++ b/packages/bridge-ui-v2/package.json @@ -1,6 +1,6 @@ { "name": "bridge-ui-v2", - "version": "2.8.0", + "version": "2.9.0", "private": true, "scripts": { "dev": "vite dev", diff --git a/packages/eventindexer/CHANGELOG.md b/packages/eventindexer/CHANGELOG.md index 58275411b10..3c171bc5bf3 100644 --- a/packages/eventindexer/CHANGELOG.md +++ b/packages/eventindexer/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [0.13.0](https://github.com/taikoxyz/taiko-mono/compare/eventindexer-v0.12.0...eventindexer-v0.13.0) (2023-10-18) + + +### Features + +* **eventindexer:** API documentation, swagger, github pages ([#14948](https://github.com/taikoxyz/taiko-mono/issues/14948)) ([5455267](https://github.com/taikoxyz/taiko-mono/commit/54552674fe8a6b0b4321afe1ef4d90d00d62f0e8)) + + +### Bug Fixes + +* **eventindexer:** update config tests ([#14912](https://github.com/taikoxyz/taiko-mono/issues/14912)) ([beab49b](https://github.com/taikoxyz/taiko-mono/commit/beab49bd8f085b1e285fb3a16e9b493f3c5f5932)) +* **eventindexer:** upodate indexnfts flag to bool ([#14905](https://github.com/taikoxyz/taiko-mono/issues/14905)) ([a4a982e](https://github.com/taikoxyz/taiko-mono/commit/a4a982ec15a11f207c5b14c3a0b5fb2caffd2c1b)) + ## [0.12.0](https://github.com/taikoxyz/taiko-mono/compare/eventindexer-v0.11.0...eventindexer-v0.12.0) (2023-09-25) diff --git a/packages/eventindexer/package.json b/packages/eventindexer/package.json index 2bce7ae4659..67612670ded 100644 --- a/packages/eventindexer/package.json +++ b/packages/eventindexer/package.json @@ -1,5 +1,5 @@ { "name": "@taiko/eventindexer", - "version": "0.12.0", + "version": "0.13.0", "private": true } diff --git a/packages/protocol/CHANGELOG.md b/packages/protocol/CHANGELOG.md index df77fbdd7cf..fd3647a8bf0 100644 --- a/packages/protocol/CHANGELOG.md +++ b/packages/protocol/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.15.2](https://github.com/taikoxyz/taiko-mono/compare/protocol-v0.15.1...protocol-v0.15.2) (2023-10-18) + + +### Bug Fixes + +* **protocol:** fix a bug reported by Quillaudit ([#14938](https://github.com/taikoxyz/taiko-mono/issues/14938)) ([99b200b](https://github.com/taikoxyz/taiko-mono/commit/99b200bad93bcee0d0c9441d0393b2aa48636017)) + ## [0.15.1](https://github.com/taikoxyz/taiko-mono/compare/protocol-v0.15.0...protocol-v0.15.1) (2023-10-03) diff --git a/packages/protocol/package.json b/packages/protocol/package.json index 46e2fe87927..08a476a9580 100644 --- a/packages/protocol/package.json +++ b/packages/protocol/package.json @@ -1,6 +1,6 @@ { "name": "@taiko/protocol", - "version": "0.15.1", + "version": "0.15.2", "private": true, "scripts": { "clean": "rm -rf abis cache && forge clean", diff --git a/packages/relayer/CHANGELOG.md b/packages/relayer/CHANGELOG.md index 97f8da2375a..3d809e6770d 100644 --- a/packages/relayer/CHANGELOG.md +++ b/packages/relayer/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [0.12.0](https://github.com/taikoxyz/taiko-mono/compare/relayer-v0.11.0...relayer-v0.12.0) (2023-10-18) + + +### Features + +* **eventindexer:** API documentation, swagger, github pages ([#14948](https://github.com/taikoxyz/taiko-mono/issues/14948)) ([5455267](https://github.com/taikoxyz/taiko-mono/commit/54552674fe8a6b0b4321afe1ef4d90d00d62f0e8)) + + +### Bug Fixes + +* **eventindexer:** update config tests ([#14912](https://github.com/taikoxyz/taiko-mono/issues/14912)) ([beab49b](https://github.com/taikoxyz/taiko-mono/commit/beab49bd8f085b1e285fb3a16e9b493f3c5f5932)) +* **relayer:** ERC1155 bridging, amount => amounts ([#14959](https://github.com/taikoxyz/taiko-mono/issues/14959)) ([d42c59d](https://github.com/taikoxyz/taiko-mono/commit/d42c59d5150c9c41941458e25fac75121d73da76)) + ## [0.11.0](https://github.com/taikoxyz/taiko-mono/compare/relayer-v0.10.0...relayer-v0.11.0) (2023-09-25) diff --git a/packages/relayer/package.json b/packages/relayer/package.json index d5b751efe9f..0bde9044604 100644 --- a/packages/relayer/package.json +++ b/packages/relayer/package.json @@ -1,5 +1,5 @@ { "name": "@taiko/relayer", - "version": "0.11.0", + "version": "0.12.0", "private": true } diff --git a/packages/website/CHANGELOG.md b/packages/website/CHANGELOG.md index 6ca3433e1aa..ff43ba673e7 100644 --- a/packages/website/CHANGELOG.md +++ b/packages/website/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.18.0](https://github.com/taikoxyz/taiko-mono/compare/website-v0.17.0...website-v0.18.0) (2023-10-18) + + +### Features + +* **website:** add covalent to ecosystem ([#14908](https://github.com/taikoxyz/taiko-mono/issues/14908)) ([9cc4db3](https://github.com/taikoxyz/taiko-mono/commit/9cc4db3ec8e59a619e8135f48d9af9a936325e82)) +* **website:** remove swap tokens guide ([#14897](https://github.com/taikoxyz/taiko-mono/issues/14897)) ([7dbf44c](https://github.com/taikoxyz/taiko-mono/commit/7dbf44c8ad1d0d1c67bf424d3f45ec6b2547465c)) +* **website:** update `prover-market-page.mdx` ([#14978](https://github.com/taikoxyz/taiko-mono/issues/14978)) ([ffa2365](https://github.com/taikoxyz/taiko-mono/commit/ffa2365560a49bf39741ca1840731485eff10c1a)) +* **website:** update Rubic on ecosystem page ([#14933](https://github.com/taikoxyz/taiko-mono/issues/14933)) ([d1f6bef](https://github.com/taikoxyz/taiko-mono/commit/d1f6beffe020fe1171279cd5279ef08643a70d84)) +* **webste:** add pixelswap and superscalar to ecosystem ([#14961](https://github.com/taikoxyz/taiko-mono/issues/14961)) ([f47509f](https://github.com/taikoxyz/taiko-mono/commit/f47509f8ca66f1e1fe6af4565472b023cb24e1cf)) + ## [0.17.0](https://github.com/taikoxyz/taiko-mono/compare/website-v0.16.0...website-v0.17.0) (2023-10-03) diff --git a/packages/website/package.json b/packages/website/package.json index fd30c74a538..928c8c21c1e 100644 --- a/packages/website/package.json +++ b/packages/website/package.json @@ -1,6 +1,6 @@ { "name": "@taiko/website", - "version": "0.17.0", + "version": "0.18.0", "private": true, "scripts": { "build": "pnpm next build",