diff --git a/CHANGELOG.md b/CHANGELOG.md index 79b536dd..f60c8286 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +# [4.0.0](https://github.com/bcoe/c8/compare/v3.5.0...v4.0.0) (2019-05-02) + + +### Features + +* add support for 1:1 source-maps ([#85](https://github.com/bcoe/c8/issues/85)) ([6ca4345](https://github.com/bcoe/c8/commit/6ca4345)) +* foreground-child's done() method was not being called ([#82](https://github.com/bcoe/c8/issues/82)) ([fde596e](https://github.com/bcoe/c8/commit/fde596e)) + + +### BREAKING CHANGES + +* c8 will now load source-maps if possible and remap coverage accordingly + + + # [3.5.0](https://github.com/bcoe/c8/compare/v3.4.0...v3.5.0) (2019-04-12) diff --git a/package-lock.json b/package-lock.json index 2bfe9bb0..fb454ca4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "c8", - "version": "3.5.0", + "version": "4.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index f19b1e78..feed27ae 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "c8", - "version": "3.5.0", + "version": "4.0.0", "description": "output coverage reports using Node.js' built in coverage", "main": "index.js", "bin": "./bin/c8.js",