Skip to content

Commit

Permalink
Release 12.0.0 (#211)
Browse files Browse the repository at this point in the history
* build: release 0.5.1

* chore: remove unused params
  • Loading branch information
abretonc7s committed Jul 12, 2023
1 parent b111d23 commit 87c526a
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 11 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "metamask-sdk-monorepo",
"version": "11.0.0",
"version": "12.0.0",
"private": true,
"repository": {
"type": "git",
Expand Down
8 changes: 2 additions & 6 deletions packages/examples/nodejs/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,16 @@ const options: MetaMaskSDKOptions = {
shouldShimWeb3: false,
dappMetadata: {
name: 'NodeJS example',
base64Icon: '000'
},
// Optional: customize modal text
modals: {
install: ({ link }) => {
qrcode.generate(link, { small: true }, (qr) => console.log(qr));
return {
onClose() {
// nothing to do.
},
};
return {};
},
otp: () => {
return {
mount() {},
updateOTPValue: (otpValue) => {
if (otpValue !== '') {
console.debug(
Expand Down
9 changes: 8 additions & 1 deletion packages/sdk-install-modal-web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.1]
### Uncategorized
- Revert "Release 12.0.0" ([#210](https://github.com/MetaMask/metamask-sdk/pull/210))
- Release 12.0.0 ([#208](https://github.com/MetaMask/metamask-sdk/pull/208))
- feat: optimize modal rendering and re-use existing node ([#206](https://github.com/MetaMask/metamask-sdk/pull/206))

## [0.3.3]
### Added
- [FEAT] choose between extension and mobile wallet ([#146](https://github.com/MetaMask/metamask-sdk/pull/146))
Expand All @@ -27,7 +33,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Update GitHub actions workflows ([#102](https://github.com/MetaMask/metamask-sdk/pull/102))
- [FEAT] Yarn v3 migration ([#100](https://github.com/MetaMask/metamask-sdk/pull/100))

[Unreleased]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/[email protected]
[Unreleased]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/[email protected]
[0.5.1]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/[email protected]...@metamask/[email protected]
[0.3.3]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/[email protected]...@metamask/[email protected]
[0.3.2]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/[email protected]...@metamask/[email protected]
[0.3.0]: https://github.com/MetaMask/metamask-sdk/releases/tag/@metamask/[email protected]
2 changes: 1 addition & 1 deletion packages/sdk-install-modal-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/sdk-install-modal-web",
"version": "0.3.3",
"version": "0.5.1",
"description": "MetaMask SDK Install Modal for Web",
"homepage": "https://github.com/MetaMask/metamask-sdk#readme",
"bugs": {
Expand Down
9 changes: 8 additions & 1 deletion packages/sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.1]
### Uncategorized
- Revert "Release 12.0.0" ([#210](https://github.com/MetaMask/metamask-sdk/pull/210))
- Release 12.0.0 ([#208](https://github.com/MetaMask/metamask-sdk/pull/208))
- feat: optimize modal rendering and re-use existing node ([#206](https://github.com/MetaMask/metamask-sdk/pull/206))

## [0.5.0]
### Added
- feat: improved event tracking for extension and inappbrowser ([#200](https://github.com/MetaMask/metamask-sdk/pull/200))
Expand Down Expand Up @@ -53,7 +59,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- [FEAT] improve logging + update examples ([#99](https://github.com/MetaMask/metamask-sdk/pull/99))

[Unreleased]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/[email protected]
[Unreleased]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/[email protected]
[0.5.1]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/[email protected]...@metamask/[email protected]
[0.5.0]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/[email protected]...@metamask/[email protected]
[0.4.2]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/[email protected]...@metamask/[email protected]
[0.4.1]: https://github.com/MetaMask/metamask-sdk/compare/@metamask/[email protected]...@metamask/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/sdk",
"version": "0.5.0",
"version": "0.5.1",
"description": "",
"homepage": "https://github.com/MetaMask/metamask-sdk#readme",
"bugs": {
Expand Down

0 comments on commit 87c526a

Please sign in to comment.