From 7f7081a687c46b6d55dbab0f0d4d74224e09cc1d Mon Sep 17 00:00:00 2001 From: Karol Walasek Date: Wed, 12 Jun 2019 15:05:06 +0200 Subject: [PATCH 1/3] Breaking changes remark --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 3807f3d..d3f4b55 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,8 @@ npm run benchmark Beware this project is still in development. There may be serious bugs or performance issues over time. +Breaking changes might be introduced in minor versions until version 1.0 comes out. + Documentation is available [here](https://walasek.github.io/node-binary-encoder/). ```javascript From ab0fd7d7642c227bc5d9cb90a9b653eb5d309194 Mon Sep 17 00:00:00 2001 From: Karol Walasek Date: Thu, 17 Oct 2019 21:48:53 +0200 Subject: [PATCH 2/3] Updated Zora to v3 --- test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.js b/test.js index 8e959e5..8bba9a1 100644 --- a/test.js +++ b/test.js @@ -1,6 +1,6 @@ const glob = require('glob'); const path = require('path'); -const test = require('zora'); +const { test } = require('zora'); async function runTestFile(file){ await test('Testing file '+file, async (t) => { From 020ce6f5f412d19b88eff273e5a54ad8211e25a3 Mon Sep 17 00:00:00 2001 From: Karol Walasek Date: Thu, 17 Oct 2019 21:49:14 +0200 Subject: [PATCH 3/3] Dropped Node 8 from CI --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a09217d..5a4c1d5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,6 @@ install: - npm install -g codecov node_js: - - "8" - "10" - "12"