From a06706ae36603c759b9a02a0c83a0fbd79fd4f90 Mon Sep 17 00:00:00 2001 From: Taha Paksu Date: Mon, 2 Mar 2020 11:01:22 +0300 Subject: [PATCH] tagged v0.1.0 --- README.md | 8 ++++++-- index.js | 2 +- package.json | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 79373fc..5188b8c 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ $ npm install karma-code-reporter --save-dev ```json { "devDependencies": { - "karma-code-reporter": "~0.0.1" + "karma-code-reporter": "~0.1.0" } } ``` @@ -109,8 +109,8 @@ module.exports = function (grunt) { In lieu of a formal styleguide take care to maintain the existing coding style. ## Release History -* 0.0.1 initial release +* 0.0.1 initial release * 0.0.2 added screenshots to README, fixed wrong version number in Installation section * 0.0.3 fixed bound calculation, added report visibility hidden until tests are completed * 0.0.4 added responsive styles @@ -121,6 +121,10 @@ In lieu of a formal styleguide take care to maintain the existing coding style. * 0.0.9 lodash security fix reported by dependabot * 0.0.10 previous version bump fixes, not so important +* 0.1.0 - added more source line definitions such as "@file?id:line:pos" and " at Anonymous function (file?id:line:pos) for parsing, + - added folder separation by browser type, + - fixed some exceptions + ## Author [Taha PAKSU](http://tahapaksu.com) diff --git a/index.js b/index.js index 75d039f..dd397dc 100644 --- a/index.js +++ b/index.js @@ -1,5 +1,5 @@ /** - * karma-code-reporter + * karma-code-reporter v0.1.0 * * Copyright 2017 Taha PAKSU * diff --git a/package.json b/package.json index 18e4176..cddd06a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "karma-code-reporter", - "version": "0.0.11", + "version": "0.1.0", "description": "A Karma failed test examples creator module/plugin", "main": "index.js", "homepage": "https://github.com/tpaksu/karma-code-reporter",