Skip to content

Commit

Permalink
Remove -rc.1 from all versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmire committed Nov 16, 2022
1 parent 0e5cd32 commit a9b3a53
Show file tree
Hide file tree
Showing 29 changed files with 273 additions and 78 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/controllers-monorepo",
"version": "34.0.0-rc.1",
"version": "34.0.0",
"private": true,
"description": "Collection of platform-agnostic modules for creating secure data models for cryptocurrency wallets",
"repository": {
Expand Down
8 changes: 4 additions & 4 deletions packages/address-book-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0-rc.1]
## [1.0.0]
### Added
- Initial release candidate
- Initial release
- As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely:
- `src/user/AddressBookController.ts`
- `src/user/AddressBookController.test.ts`

All changes listed after this point were applied to this package following the monorepo conversion.

[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/[email protected]-rc.1...HEAD
[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/[email protected]-rc.1
[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/[email protected]
[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/[email protected]
9 changes: 9 additions & 0 deletions packages/address-book-controller/package/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

[Unreleased]: https://github.com/MetaMask/controllers/
20 changes: 20 additions & 0 deletions packages/address-book-controller/package/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
MIT License

Copyright (c) 2018 MetaMask

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
15 changes: 15 additions & 0 deletions packages/address-book-controller/package/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# `@metamask/address-book-controller`

Manages a list of recipient addresses associated with nicknames.

## Installation

`yarn add @metamask/address-book-controller`

or

`npm install @metamask/address-book-controller`

## Contributing

This package is part of a monorepo. Instructions for contributing can be found in the [monorepo README](https://github.com/MetaMask/controllers#readme).
50 changes: 50 additions & 0 deletions packages/address-book-controller/package/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"name": "@metamask/address-book-controller",
"version": "0.0.0",
"description": "Manages a list of recipient addresses associated with nicknames",
"keywords": [
"MetaMask",
"Ethereum"
],
"homepage": "https://github.com/MetaMask/controllers/tree/main/packages/address-book-controller#readme",
"bugs": {
"url": "https://github.com/MetaMask/controllers/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/controllers.git"
},
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build:docs": "typedoc",
"changelog:validate": "../../scripts/validate-changelog.sh @metamask/address-book-controller",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@metamask/base-controller": "../base-controller/package.tgz",
"@metamask/controller-utils": "../controller-utils/package.tgz"
},
"devDependencies": {
"@metamask/auto-changelog": "^3.0.0",
"@types/jest": "^26.0.22",
"deepmerge": "^4.2.2",
"jest": "^26.4.2",
"ts-jest": "^26.5.2",
"typedoc": "^0.22.15",
"typedoc-plugin-missing-exports": "^0.22.6",
"typescript": "~4.6.3"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}
8 changes: 4 additions & 4 deletions packages/announcement-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0-rc.1]
## [1.0.0]
### Added
- Initial release candidate
- Initial release
- As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely:
- Everything in `src/announcement`

All changes listed after this point were applied to this package following the monorepo conversion.

[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/[email protected]-rc.1...HEAD
[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/[email protected]-rc.1
[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/[email protected]
[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/[email protected]
8 changes: 4 additions & 4 deletions packages/approval-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0-rc.1]
## [1.0.0]
### Added
- Initial release candidate
- Initial release
- As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely:
- Everything in `src/approval`

All changes listed after this point were applied to this package following the monorepo conversion.

[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/[email protected]-rc.1...HEAD
[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/[email protected]-rc.1
[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/[email protected]
[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/[email protected]
8 changes: 4 additions & 4 deletions packages/assets-controllers/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0-rc.1]
## [1.0.0]
### Added
- Initial release candidate
- Initial release
- As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely:
- Everything in `src/assets`
- Asset-related functions from `src/util.ts` and accompanying tests
Expand All @@ -18,5 +18,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Use Ethers for AssetsContractController ([#845](https://github.com/MetaMask/controllers/pull/845))

[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/[email protected]-rc.1...HEAD
[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/[email protected]-rc.1
[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/[email protected]
[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/[email protected]
2 changes: 1 addition & 1 deletion packages/assets-controllers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/assets-controllers",
"version": "1.0.0-rc.1",
"version": "1.0.0",
"description": "Controllers which manage interactions involving ERC-20, ERC-721, and ERC-1155 tokens (including NFTs)",
"keywords": [
"MetaMask",
Expand Down
8 changes: 4 additions & 4 deletions packages/base-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0-rc.1]
## [1.0.0]
### Added
- Initial release candidate
- Initial release
- As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely:
- `src/BaseController.ts`
- `src/BaseController.test.ts`
Expand All @@ -21,5 +21,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

All changes listed after this point were applied to this package following the monorepo conversion.

[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/[email protected]-rc.1...HEAD
[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/[email protected]-rc.1
[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/[email protected]
[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/[email protected]
8 changes: 4 additions & 4 deletions packages/composable-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0-rc.1]
## [1.0.0]
### Added
- Initial release candidate
- Initial release
- As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely:
- `src/ComposableController.ts`
- `src/ComposableController.test.ts`

All changes listed after this point were applied to this package following the monorepo conversion.

[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/[email protected]-rc.1...HEAD
[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/[email protected]-rc.1
[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/[email protected]
[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/[email protected]
8 changes: 4 additions & 4 deletions packages/controller-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0-rc.1]
## [1.0.0]
### Added
- Initial release candidate
- Initial release
- As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely:
- `src/constants.ts`
- `src/util.ts` (minus transaction-, assets-, and message manager-related functions)
Expand All @@ -17,5 +17,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

All changes listed after this point were applied to this package following the monorepo conversion.

[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/[email protected]-rc.1...HEAD
[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/[email protected]-rc.1
[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/[email protected]
[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/[email protected]
9 changes: 9 additions & 0 deletions packages/controller-utils/package/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

[Unreleased]: https://github.com/MetaMask/controllers/
20 changes: 20 additions & 0 deletions packages/controller-utils/package/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
MIT License

Copyright (c) 2018 MetaMask

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
15 changes: 15 additions & 0 deletions packages/controller-utils/package/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# `@metamask/controller-utils`

Data and convenience functions shared by multiple packages.

## Installation

`yarn add @metamask/controller-utils`

or

`npm install @metamask/controller-utils`

## Contributing

This package is part of a monorepo. Instructions for contributing can be found in the [monorepo README](https://github.com/MetaMask/controllers#readme).
57 changes: 57 additions & 0 deletions packages/controller-utils/package/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"name": "@metamask/controller-utils",
"version": "0.0.0",
"description": "Data and convenience functions shared by multiple packages",
"keywords": [
"MetaMask",
"Ethereum"
],
"homepage": "https://github.com/MetaMask/controllers/tree/main/packages/controller-utils#readme",
"bugs": {
"url": "https://github.com/MetaMask/controllers/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/controllers.git"
},
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build:docs": "typedoc",
"changelog:validate": "../../scripts/validate-changelog.sh @metamask/controller-utils",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@metamask/base-controller": "../base-controller/package.tgz",
"eth-ens-namehash": "^2.0.8",
"eth-rpc-errors": "^4.0.0",
"ethereumjs-util": "^7.0.10",
"ethjs-unit": "^0.1.6",
"fast-deep-equal": "^3.1.3",
"isomorphic-fetch": "^3.0.0"
},
"devDependencies": {
"@metamask/auto-changelog": "^3.0.0",
"@types/jest": "^26.0.22",
"abort-controller": "^3.0.0",
"deepmerge": "^4.2.2",
"jest": "^26.4.2",
"nock": "^13.0.7",
"ts-jest": "^26.5.2",
"typedoc": "^0.22.15",
"typedoc-plugin-missing-exports": "^0.22.6",
"typescript": "~4.6.3"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}
8 changes: 4 additions & 4 deletions packages/ens-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0-rc.1]
## [1.0.0]
### Added
- Initial release candidate
- Initial release
- As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely:
- `src/third-party/EnsController.ts`
- `src/third-party/EnsController.test.ts`

All changes listed after this point were applied to this package following the monorepo conversion.

[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/[email protected]-rc.1...HEAD
[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/[email protected]-rc.1
[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/[email protected]
[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/[email protected]
8 changes: 4 additions & 4 deletions packages/gas-fee-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0-rc.1]
## [1.0.0]
### Added
- Initial release candidate
- Initial release
- As a result of converting our shared controllers repo into a monorepo ([#831](https://github.com/MetaMask/controllers/pull/831)), we've created this package from select parts of [`@metamask/controllers` v33.0.0](https://github.com/MetaMask/controllers/tree/v33.0.0), namely:
- Everything in `src/gas`

All changes listed after this point were applied to this package following the monorepo conversion.

[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/[email protected]-rc.1...HEAD
[1.0.0-rc.1]: https://github.com/MetaMask/controllers/releases/tag/@metamask/[email protected]-rc.1
[Unreleased]: https://github.com/MetaMask/controllers/compare/@metamask/[email protected]
[1.0.0]: https://github.com/MetaMask/controllers/releases/tag/@metamask/[email protected]
Loading

0 comments on commit a9b3a53

Please sign in to comment.