diff --git a/.prettierrc.yaml b/.prettierrc.yaml index 887ec25..9c3aaeb 100644 --- a/.prettierrc.yaml +++ b/.prettierrc.yaml @@ -1,7 +1,7 @@ -arrowParens: avoid +arrowParens: "avoid" bracketSpacing: true -endOfLine: auto +endOfLine: "auto" printWidth: 120 singleQuote: false tabWidth: 2 -trailingComma: all +trailingComma: "all" diff --git a/CHANGELOG.md b/CHANGELOG.md index 17aec6b..58de908 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,10 +5,17 @@ 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). +## [1.0.1] - 2021-09-29 + +### Fixed + +- Relax type checking in `fromFp` function. + ## [1.0.0] - 2021-09-27 ### Added - First release of the package. +[1.0.1]: https://github.com/paulrberg/evm-bn/compare/v1.0.0...v1.0.1 [1.0.0]: https://github.com/paulrberg/evm-bn/releases/tag/v1.0.0 diff --git a/package.json b/package.json index e3a0694..bf3a174 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "evm-bn", "description": "Convert fixed-point numbers to ethers big numbers and vice-versa", - "version": "1.0.0", + "version": "1.0.1", "author": { "name": "Paul Razvan Berg", "url": "https://paulrberg.com"