From b0a41f953b75c2f735a40e3eeec824070e31738b Mon Sep 17 00:00:00 2001 From: Benjamin Eidelman Date: Wed, 1 Jan 2020 21:48:45 -0300 Subject: [PATCH] v0.4 - dropping support for node < 8 - multiple typescript annotation updates - LCS non-recursive implementation (see #237 ) --- .travis.yml | 1 + README.md | 2 +- package.json | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 51a0ed20..98094771 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,6 @@ language: node_js node_js: + - "8" - "10" - "12" - "13" diff --git a/README.md b/README.md index a1e5b56c..4b926ea8 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Supported platforms And you can test your current browser visiting the [test page](http://benjamine.github.com/jsondiffpatch/test/index.html). -* Node.js [![Build Status](https://secure.travis-ci.org/benjamine/jsondiffpatch.svg)](http://travis-ci.org/benjamine/jsondiffpatch) v4.8+ +* Node.js [![Build Status](https://secure.travis-ci.org/benjamine/jsondiffpatch.svg)](http://travis-ci.org/benjamine/jsondiffpatch) v8+ Usage ----- diff --git a/package.json b/package.json index ece19ce6..2b15b76f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jsondiffpatch", - "version": "0.3.11", + "version": "0.4.0", "author": "Benjamin Eidelman ", "description": "Diff & Patch for Javascript objects", "contributors": [ @@ -80,7 +80,7 @@ "bundleDependencies": [], "license": "MIT", "engines": { - "node": ">=4.8.0" + "node": ">=8.17.0" }, "homepage": "https://github.com/benjamine/jsondiffpatch" }