From 698e0683a82e70144334e8452dfb72564dfad475 Mon Sep 17 00:00:00 2001 From: holgerd77 Date: Thu, 24 Sep 2020 15:45:23 +0200 Subject: [PATCH] Bumped version to v1.0.1, added CHANGELOG entry --- CHANGELOG.md | 7 +++++++ package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8659693..0ab969c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) (modification: no type change headlines) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [1.0.1] - 2020-09-25 + +- Fixed a browser issue in `Wallet.fromV3()` and `Wallet.toV3()` triggered when using web bundlers using Buffer v4 shim (Webpack 4), + see PR [#135](https://github.com/ethereumjs/ethereumjs-wallet/pull/135) + +[1.0.1]: https://github.com/ethereumjs/ethereumjs-wallet/compare/v1.0.0...v1.0.1 + ## [1.0.0] - 2020-06-23 This is the first `TypeScript` release on the library (thanks @the-jackalope for the rewrite! ❤️), see PR [#93](https://github.com/ethereumjs/ethereumjs-wallet/pull/93) for the main PR here. The release comes with various breaking changes. diff --git a/package.json b/package.json index 840588c..9538dc0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ethereumjs-wallet", - "version": "1.0.0", + "version": "1.0.1", "description": "Utilities for handling Ethereum keys", "main": "dist/index.js", "types": "./dist/index.d.ts",