Skip to content

Commit

Permalink
Release version 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Perry committed Jun 16, 2015
1 parent 08a65a4 commit 1999a43
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,8 @@ v1.2.0 - New plugin API! Plus various bits of refactoring and tidy up, nicely si

v1.3.0 - Make persistence optional in setLevel, plus lots of documentation updates and other small tweaks

v1.3.1 - With the new optional persistence, stop unnecessarily persisting the initially set default level (warn)

## License
Copyright (c) 2013 Tim Perry
Licensed under the MIT license.
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": "loglevel",
"version": "1.3.0",
"version": "1.3.1",
"main": "dist/loglevel.min.js",
"dependencies": {},
"ignore": [
Expand Down
4 changes: 2 additions & 2 deletions dist/loglevel.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! loglevel - v1.3.0 - https://github.com/pimterry/loglevel - (c) 2015 Tim Perry - licensed MIT */
/*! loglevel - v1.3.1 - https://github.com/pimterry/loglevel - (c) 2015 Tim Perry - licensed MIT */
(function (root, definition) {
if (typeof module === 'object' && module.exports && typeof require === 'function') {
module.exports = definition();
Expand Down Expand Up @@ -96,7 +96,7 @@
storedLevel = "WARN";
}

self.setLevel(self.levels[storedLevel]);
self.setLevel(self.levels[storedLevel], false);
}

/*
Expand Down
4 changes: 2 additions & 2 deletions dist/loglevel.min.js

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "loglevel",
"description": "Minimal lightweight logging for JavaScript, adding reliable log level methods to any available console.log methods",
"version": "1.3.0",
"version": "1.3.1",
"homepage": "https://github.com/pimterry/loglevel",
"author": {
"name": "Tim Perry",
Expand Down

0 comments on commit 1999a43

Please sign in to comment.