From d0b2eaa05887d7e58356da42495b8ed7b15d36ec Mon Sep 17 00:00:00 2001 From: bcoe Date: Wed, 23 Oct 2019 23:12:55 -0700 Subject: [PATCH] chore(release): 6.0.0 --- CHANGELOG.md | 16 ++++++++++++++++ package-lock.json | 2 +- package.json | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 08484ffc..04a145c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ 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. +## [6.0.0](https://github.com/bcoe/c8/compare/v5.0.4...v6.0.0) (2019-10-24) + + +### ⚠ BREAKING CHANGES + +* Node.js' source-map and lineLength cache is now used to remap coverage output (this allows tools like ts-node to be supported, which transpile at runtime). + +### Features + +* use Node.js' source-map cache, to support tools like ts-node ([#152](https://github.com/bcoe/c8/issues/152)) ([53bba15](https://github.com/bcoe/c8/commit/53bba15bee07e8f0446fd85cc59d2b562fe34a21)) + + +### Bug Fixes + +* **deps:** update dependency yargs-parser to v15 ([#153](https://github.com/bcoe/c8/issues/153)) ([80153de](https://github.com/bcoe/c8/commit/80153de61be8e5830f1c228945184e4878f8cf0c)) + ### [5.0.4](https://github.com/bcoe/c8/compare/v5.0.3...v5.0.4) (2019-09-06) diff --git a/package-lock.json b/package-lock.json index 0ebbd558..409bf7c3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "c8", - "version": "5.0.4", + "version": "6.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 030d856d..91df177c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "c8", - "version": "5.0.4", + "version": "6.0.0", "description": "output coverage reports using Node.js' built in coverage", "main": "index.js", "bin": "./bin/c8.js",