Skip to content

Commit

Permalink
chore(release): 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
medikoo committed Mar 22, 2018
1 parent 48f2005 commit f20605d
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 4 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,34 @@

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.

<a name="2.0.0"></a>
# [2.0.0](https://github.com/medikoo/log4/compare/v1.2.0...v2.0.0) (2018-03-22)


### Features

* remove date from log event ([7f2903a](https://github.com/medikoo/log4/commit/7f2903a))
* remove node env handler ([20450ad](https://github.com/medikoo/log4/commit/20450ad))
* remove obsolete event emit ([9499b37](https://github.com/medikoo/log4/commit/9499b37))


* feat: emit events also if logger disabled ([6eb338d](https://github.com/medikoo/log4/commit/6eb338d))


### BREAKING CHANGES

* logs for disabled loggers will also be emitted.
Handler should check `logger.enabled` to confirm on whether
intetion is to have log visible
* remove 'event.date` property
* log:before event was removed
* Node env handler was moved to outer package,
it'll have to be initialized as:

require('log4-node')



<a name="1.2.0"></a>
# [1.2.0](https://github.com/medikoo/log4/compare/v1.1.0...v1.2.0) (2017-09-22)

Expand Down
13 changes: 9 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
{
"name": "log4",
"version": "1.2.0",
"version": "2.0.0",
"description": "Universal pluggable logging utility",
"author": "Mariusz Nowak <[email protected]> (http://www.medikoo.com/)",
"keywords": ["log", "logger", "debug", "bunyan", "winston"],
"keywords": [
"log",
"logger",
"debug",
"bunyan",
"winston"
],
"repository": {
"type": "git",
"url": "git://github.com/medikoo/log4.git"
Expand All @@ -26,8 +32,7 @@
},
"scripts": {
"coverage": "istanbul cover bin/test",
"check-coverage":
"npm run coverage && istanbul check-coverage --statements 100 --function 100 --branches 100 --lines 100",
"check-coverage": "npm run coverage && istanbul check-coverage --statements 100 --function 100 --branches 100 --lines 100",
"lint": "eslint --ignore-path=.gitignore .",
"test": "node bin/test",
"test-browsers": "browserstack-tape-runner bin/test"
Expand Down

0 comments on commit f20605d

Please sign in to comment.