Skip to content

Commit

Permalink
Release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnyreeves committed Jul 5, 2016
1 parent 94a482b commit 0906f8d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## 1.3.0 (5th July, 2016)
- Add `Logger.createDefaultHandler()`, fixes #26
- Correct typo in README, fixes #28
- Adds Typescript definitions (`logger.d.ts`), (#27, @pjsb)

## 1.2.0 (10 September, 2015)
- Support for custom message formatter in Logger.useDefaults()
- Support for custom message formatter in Logger.useDefaults()
- Logger.useDefaults() now expects a hash instead of a logLevel.

## 1.1.1 (14th July, 2015)
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-logger",
"version": "1.2.0",
"version": "1.3.0",
"main": "src/logger.js",
"ignore": [
"**/.*",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-logger",
"version": "1.2.0",
"version": "1.3.0",
"description": "Lightweight, unobtrusive, configurable JavaScript logger",
"author": "Jonny Reeves (http://jonnyreeves.co.uk)",
"homepage": "http://github.com/jonnyreeves/js-logger",
Expand Down
2 changes: 1 addition & 1 deletion src/logger.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
var Logger = { };

// For those that are at home that are keeping score.
Logger.VERSION = "1.2.0";
Logger.VERSION = "1.3.0";

// Function which handles all incoming log messages.
var logHandler;
Expand Down
2 changes: 1 addition & 1 deletion src/logger.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0906f8d

Please sign in to comment.