diff --git a/README.md b/README.md index ebf4b73..34b9f15 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ # Gator Examples -A monorepo containing the example applications for building apps with [Metamask Delegation Tookit](https://docs.metamask.io/delegation-toolkit/) +A monorepo containing the example applications for building apps with [Metamask Smart Accounts Kit](https://docs.metamask.io/smart-accounts-kit/). ## Overview This repository contains: -**create-gator-app**: CLI tool to bootstrap new projects with delegation capabilities +**create-gator-app**: CLI tool to bootstrap new projects for Smart Accounts Kit ## Repository Structure diff --git a/package.json b/package.json index a98db0b..5c118fc 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { "name": "@metamask/gator-examples", "type": "module", - "version": "4.0.0", + "version": "5.0.0", "private": true, "license": "(MIT-0 OR Apache-2.0)", - "description": "CLI tool to create Gator examples", + "description": "CLI tool to create Smart Accounts Kit examples", "main": "dist/index.js", "repository": { "type": "git", diff --git a/packages/create-gator-app/CHANGELOG.md b/packages/create-gator-app/CHANGELOG.md index 19eb68e..fc25d2f 100644 --- a/packages/create-gator-app/CHANGELOG.md +++ b/packages/create-gator-app/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.4] + +### Changed + +- Rename ERC-7715 template to Advanced Permissions template +- Update templates to use `@metamask/smart-accounts-kit` + +### Fixed + +- Fix Farcaster template dependency issue + ## [0.1.3] ### Changed @@ -49,8 +60,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - ERC-7715 starter template for Next.js - Support for feature flags -[Unreleased]: https://github.com/MetaMask/gator-examples/compare/create-gator-app@0.1.3...HEAD +[Unreleased]: https://github.com/MetaMask/gator-examples/compare/create-gator-app@0.1.4...HEAD +[0.1.4]: https://github.com/MetaMask/gator-examples/compare/create-gator-app@0.1.3...create-gator-app@0.1.4 [0.1.3]: https://github.com/MetaMask/gator-examples/compare/create-gator-app@0.1.2...create-gator-app@0.1.3 [0.1.2]: https://github.com/MetaMask/gator-examples/compare/create-gator-app@0.1.1...create-gator-app@0.1.2 [0.1.1]: https://github.com/MetaMask/gator-examples/compare/create-gator-app@0.1.0...create-gator-app@0.1.1 -[0.1.0]: https://github.com/MetaMask/gator-examples/releases/tag/create-gator-app@0.1.0 \ No newline at end of file +[0.1.0]: https://github.com/MetaMask/gator-examples/releases/tag/create-gator-app@0.1.0 diff --git a/packages/create-gator-app/README.md b/packages/create-gator-app/README.md index 711c6a9..b2ba424 100644 --- a/packages/create-gator-app/README.md +++ b/packages/create-gator-app/README.md @@ -1,6 +1,6 @@ # Create Gator App -Interactive CLI to bootstrap a project with the MetaMask Smart Accounts, and ERC-7715 template in under two minutes. The CLI automatically installs the required dependencies and sets up a project structure using a selected template, allowing you to focus on building your dapp. +Interactive CLI to bootstrap a project with the MetaMask Smart Accounts, and Advanced Permissions template in under two minutes. The CLI automatically installs the required dependencies and sets up a project structure using a selected template, allowing you to focus on building your dapp. [![npm version](https://img.shields.io/npm/v/@metamask/create-gator-app.svg)](https://www.npmjs.com/package/@metamask/create-gator-app) [![License](https://img.shields.io/npm/l/@metamask/create-gator-app.svg)]() @@ -15,4 +15,4 @@ npx @metamask/create-gator-app@latest ## Documentation -See [CLI quickstart](https://docs.metamask.io/delegation-toolkit/get-started/cli-quickstart/) to learn more. \ No newline at end of file +See [CLI quickstart](https://docs.metamask.io/smart-accounts-kit) to learn more. \ No newline at end of file diff --git a/packages/create-gator-app/package.json b/packages/create-gator-app/package.json index 56066a1..c7be4aa 100644 --- a/packages/create-gator-app/package.json +++ b/packages/create-gator-app/package.json @@ -1,8 +1,8 @@ { "name": "@metamask/create-gator-app", - "version": "0.1.3", + "version": "0.1.4", "license": "(MIT-0 OR Apache-2.0)", - "description": "CLI tool to create new MetaMask Delegator applications", + "description": "CLI tool to create new MetaMask Smart Accounts Kit application", "main": "dist/src/index.js", "types": "./dist/src/index.d.ts", "bin": "./dist/src/index.js",