From 42fb8d75ac0293be9c501548900bd5ca484cb05e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marin=20Petruni=C4=87?= Date: Mon, 10 Feb 2020 15:06:26 +0100 Subject: [PATCH 1/2] fix node 10 support --- CHANGELOG.md | 3 +++ babel.config.json | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c95d15..4136ac6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - +### Bugfixes +- fix module compiling in node 10 (class properties) + ## [1.0.0-rc4] - 2019-02-10 ### Bugfixes diff --git a/babel.config.json b/babel.config.json index 7cdd358..fc69aa9 100644 --- a/babel.config.json +++ b/babel.config.json @@ -13,6 +13,7 @@ "plugins": [ "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-export-default-from", - "@babel/plugin-proposal-async-generator-functions" + "@babel/plugin-proposal-async-generator-functions", + "@babel/plugin-proposal-class-properties" ] } From 2309449ce29a3c03f0ff46ce73001885387829d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marin=20Petruni=C4=87?= Date: Mon, 10 Feb 2020 15:07:21 +0100 Subject: [PATCH 2/2] Release 1.0.0-rc.5 --- CHANGELOG.md | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4136ac6..5458263 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] - +## [1.0.0-rc.5] - 2019-02-10 + ### Bugfixes - fix module compiling in node 10 (class properties) diff --git a/package.json b/package.json index 8762cf0..9bf500f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "libp2p-noise", - "version": "1.0.0-rc4", + "version": "1.0.0-rc.5", "main": "dist/index.js", "types": "dist/index.d.ts", "module": "lib/index.js",