diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c765bd..d0272b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.0] + +### Added + +- Add x402 server template [#103](https://github.com/MetaMask/create-gator-app/pull/103) + +### Changed + +- Update Smart Accounts Kit version [#105](https://github.com/MetaMask/create-gator-app/pull/105) + ## [0.3.0] ### Changed @@ -84,12 +94,13 @@ 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/v0.3.0...HEAD -[0.3.0]: https://github.com/MetaMask/gator-examples/compare/v0.2.0...v0.3.0 -[0.2.0]: https://github.com/MetaMask/gator-examples/compare/v0.1.5...v0.2.0 -[0.1.5]: https://github.com/MetaMask/gator-examples/compare/v0.1.4...v0.1.5 -[0.1.4]: https://github.com/MetaMask/gator-examples/compare/v0.1.3...v0.1.4 -[0.1.3]: https://github.com/MetaMask/gator-examples/compare/v0.1.2...v0.1.3 -[0.1.2]: https://github.com/MetaMask/gator-examples/compare/v0.1.1...v0.1.2 -[0.1.1]: https://github.com/MetaMask/gator-examples/compare/v0.1.0...v0.1.1 -[0.1.0]: https://github.com/MetaMask/gator-examples/releases/tag/v0.1.0 +[Unreleased]: https://github.com/MetaMask/create-gator-app/compare/v0.4.0...HEAD +[0.4.0]: https://github.com/MetaMask/create-gator-app/compare/v0.3.0...v0.4.0 +[0.3.0]: https://github.com/MetaMask/create-gator-app/compare/v0.2.0...v0.3.0 +[0.2.0]: https://github.com/MetaMask/create-gator-app/compare/v0.1.5...v0.2.0 +[0.1.5]: https://github.com/MetaMask/create-gator-app/compare/v0.1.4...v0.1.5 +[0.1.4]: https://github.com/MetaMask/create-gator-app/compare/v0.1.3...v0.1.4 +[0.1.3]: https://github.com/MetaMask/create-gator-app/compare/v0.1.2...v0.1.3 +[0.1.2]: https://github.com/MetaMask/create-gator-app/compare/v0.1.1...v0.1.2 +[0.1.1]: https://github.com/MetaMask/create-gator-app/compare/v0.1.0...v0.1.1 +[0.1.0]: https://github.com/MetaMask/create-gator-app/releases/tag/v0.1.0 diff --git a/package.json b/package.json index 65f066b..63670fd 100644 --- a/package.json +++ b/package.json @@ -1,14 +1,14 @@ { "name": "@metamask/create-gator-app", - "version": "0.3.0", + "version": "0.4.0", "description": "CLI tool to create new MetaMask Smart Accounts Kit application", - "homepage": "https://github.com/MetaMask/gator-examples#readme", + "homepage": "https://github.com/MetaMask/create-gator-app#readme", "bugs": { - "url": "https://github.com/MetaMask/gator-examples/issues" + "url": "https://github.com/MetaMask/create-gator-app/issues" }, "repository": { "type": "git", - "url": "https://github.com/MetaMask/gator-examples.git" + "url": "https://github.com/MetaMask/create-gator-app.git" }, "license": "(MIT-0 OR Apache-2.0)", "sideEffects": false, diff --git a/yarn.config.cjs b/yarn.config.cjs index ee4717a..083d418 100644 --- a/yarn.config.cjs +++ b/yarn.config.cjs @@ -230,7 +230,7 @@ module.exports = defineConfig({ async constraints({ Yarn }) { const workspace = Yarn.workspace(); const workspaceName = getWorkspaceName(workspace); - const workspaceRepository = `${BASE_URL}gator-examples`; + const workspaceRepository = `${BASE_URL}create-gator-app`; expectWorkspaceField(workspace, 'name', `@metamask/${workspaceName}`); expectWorkspaceField(workspace, 'version');