Skip to content

Commit 0f9bc7c

Browse files
wenfixffmcgee725
andauthored
Release/2.0.0 (#52)
Co-authored-by: ffmcgee <[email protected]>
1 parent affd0d6 commit 0f9bc7c

File tree

7 files changed

+37
-8
lines changed

7 files changed

+37
-8
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/metamask-connect-monorepo",
3-
"version": "1.0.0",
3+
"version": "2.0.0",
44
"private": true,
55
"description": "MetaMask Connect Monorepo",
66
"repository": {

packages/analytics/CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.1]
11+
12+
### Added
13+
14+
- Add changelog formatting script ([#44](https://github.com/MetaMask/metamask-connect-monorepo/pull/44))
15+
16+
### Changed
17+
18+
- Align package versions ([#48](https://github.com/MetaMask/metamask-connect-monorepo/pull/48))
19+
1020
## [0.1.0]
1121

1222
### Added
1323

1424
- Initial release
1525

16-
[Unreleased]: https://github.com/MetaMask/metamask-connect-monorepo/compare/@metamask/[email protected]
26+
[Unreleased]: https://github.com/MetaMask/metamask-connect-monorepo/compare/@metamask/[email protected]
27+
[0.1.1]: https://github.com/MetaMask/metamask-connect-monorepo/compare/@metamask/[email protected]...@metamask/[email protected]
1728
[0.1.0]: https://github.com/MetaMask/metamask-connect-monorepo/releases/tag/@metamask/[email protected]

packages/analytics/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/analytics",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Analytics package for MetaMask Connect",
55
"keywords": [
66
"MetaMask",

packages/connect-multichain/CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.0]
11+
1012
### Added
1113

1214
- Add `removeListener`, `once` and `listenerCount` function to internal `EventEmitter` ([#31](https://github.com/MetaMask/connect-monorepo/pull/31))
15+
- Add changelog formatting script ([#44](https://github.com/MetaMask/metamask-connect-monorepo/pull/44))
16+
- Add support for read only RPC calls ([#33](https://github.com/MetaMask/metamask-connect-monorepo/pull/33))
1317

1418
### Changed
1519

20+
- Align package versions ([#48](https://github.com/MetaMask/metamask-connect-monorepo/pull/48))
1621
- Rename `preferDesktop` flag to `showInstallModal` ([#42](https://github.com/MetaMask/connect-monorepo/pull/42))
1722
- `MetaMaskConnect.provider` will be defined if there is a previous session that can be restored. Previously `connect()` had to be called explicitly first. ([#21](https://github.com/MetaMask/connect-monorepo/pull/21))
23+
- **BREAKING** Rename `readonlyRpcMap` to `supportedNetworks` ([#37](https://github.com/MetaMask/metamask-connect-monorepo/pull/37))
24+
- **BREAKING** Remove api.infuraAPIKey SDK param. Export getInfuraRpcUrls. Add env to playgrounds ([#19](https://github.com/MetaMask/metamask-connect-monorepo/pull/19))
1825

1926
### Fixed
2027

28+
- Fix switch to Bowser’s default export to fix Vite build ([#26](https://github.com/MetaMask/metamask-connect-monorepo/pull/26))
29+
- Fix reconnect `dappClient` on resumed session ([#43](https://github.com/MetaMask/metamask-connect-monorepo/pull/43))
2130
- Fix install modal not rendering when called from Vite application ([#42](https://github.com/MetaMask/connect-monorepo/pull/42))
2231
- Fix requests not being sent to the mobile wallet with proper wrapping metadata ([#28](https://github.com/MetaMask/connect-monorepo/pull/28))
2332
- Fix connections made from within the MetaMask Mobile In-App Browser ([#21](https://github.com/MetaMask/connect-monorepo/pull/21))
@@ -30,5 +39,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3039

3140
- Initial release
3241

33-
[Unreleased]: https://github.com/MetaMask/metamask-connect-monorepo/compare/@metamask/[email protected]
42+
[Unreleased]: https://github.com/MetaMask/metamask-connect-monorepo/compare/@metamask/[email protected]
43+
[0.2.0]: https://github.com/MetaMask/metamask-connect-monorepo/compare/@metamask/[email protected]...@metamask/[email protected]
3444
[0.1.0]: https://github.com/MetaMask/metamask-connect-monorepo/releases/tag/@metamask/[email protected]

packages/connect-multichain/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/connect-multichain",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"description": "Multichain package for MetaMask Connect",
55
"keywords": [
66
"MetaMask",

packages/multichain-ui/CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.0]
11+
12+
### Added
13+
14+
- Add changelog formatting script ([#44](https://github.com/MetaMask/metamask-connect-monorepo/pull/44))
15+
1016
### Changed
1117

12-
- Rename `preferDesktop` flag to `showInstallModal` ([#42](https://github.com/MetaMask/connect-monorepo/pull/42))
18+
- Align package versions ([#48](https://github.com/MetaMask/metamask-connect-monorepo/pull/48))
19+
- **BREAKING** Rename `preferDesktop` flag to `showInstallModal` ([#42](https://github.com/MetaMask/connect-monorepo/pull/42))
1320

1421
## [0.1.0]
1522

1623
### Added
1724

1825
- Initial release
1926

20-
[Unreleased]: https://github.com/MetaMask/metamask-connect-monorepo/compare/@metamask/[email protected]
27+
[Unreleased]: https://github.com/MetaMask/metamask-connect-monorepo/compare/@metamask/[email protected]
28+
[0.2.0]: https://github.com/MetaMask/metamask-connect-monorepo/compare/@metamask/[email protected]...@metamask/[email protected]
2129
[0.1.0]: https://github.com/MetaMask/metamask-connect-monorepo/releases/tag/@metamask/[email protected]

packages/multichain-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@metamask/multichain-ui",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"description": "MetaMask Connect Install Modal for Web",
55
"keywords": [
66
"MetaMask",

0 commit comments

Comments
 (0)