Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.0.0 #51

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,15 @@ 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]

## [2.0.0]
### Changed
- **BREAKING:** Removed support for Node v12 in favor of v14 ([#137](https://github.com/MetaMask/eth-json-rpc-middleware/pull/137))
- **BREAKING:** Bump minimum required Node version to 14 ([#137](https://github.com/MetaMask/eth-json-rpc-middleware/pull/137))
- Shore up MetaMaskEthereumProvider type with EventEmitter methods ([#41](https://github.com/MetaMask/detect-provider/pull/41))
- Remove global type augmentation for `window.ethereum` so that it can be assigned its own type outside of `detectEthereumProvider` ([#30](https://github.com/MetaMask/detect-provider/pull/30))

### Fixed
- Include source code in source maps to prevent build errors ([#46](https://github.com/MetaMask/detect-provider/pull/46))

## [1.2.0] - 2020-10-26
### Added
Expand All @@ -21,7 +28,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial stable release.

[Unreleased]: https://github.com/MetaMask/detect-provider/compare/v1.2.0...HEAD
[Unreleased]: https://github.com/MetaMask/detect-provider/compare/v2.0.0...HEAD
[2.0.0]: https://github.com/MetaMask/detect-provider/compare/v1.2.0...v2.0.0
[1.2.0]: https://github.com/MetaMask/detect-provider/compare/v1.1.0...v1.2.0
[1.1.0]: https://github.com/MetaMask/detect-provider/compare/v1.0.1...v1.1.0
[1.0.1]: https://github.com/MetaMask/detect-provider/releases/tag/v1.0.1
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/detect-provider",
"version": "1.2.0",
"version": "2.0.0",
"description": "A tiny utility for detecting the MetaMask Ethereum provider, or any EIP 1193-compliant provider.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down