Skip to content

Commit

Permalink
Prepare 1.5.0 Release (#84)
Browse files Browse the repository at this point in the history
* Prepare 1.5.0 Release
* Use `unpkg.com` as the example for basic HTML usage.
  • Loading branch information
jonnyreeves authored Oct 13, 2018
1 parent 34f741f commit b340398
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.5.0 (13th October, 2017)
- Added `Logger.trace()` (#67, @ddanila)
- Fix TypeScript definitions for ILoggerOpts (#70, @timm-gs)
- Export ILogger interface in TypeScript definitions (#82, @tanneess)

## 1.4.1 (19th August, 2017)
- Fixed `Logger.getLevel()` Typescript definition error (#57, @timaebi)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
js-Logger has zero dependencies and comes with AMD and CommonJS module boilerplate. If the last sentence meant nothing to you then just lob the following into your page:

```html
<script src="https://cdn.rawgit.com/jonnyreeves/js-logger/master/src/logger.min.js"></script>
<script src="https://unpkg.com/js-logger/src/logger.min.js"></script>
```

Have a look at [babel-plugin-js-logger](https://github.com/core-process/babel-plugin-js-logger), in case your project utilizes [Babel](https://babeljs.io/), and you want to use js-Logger throughout your entire project efficiently.
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.4.1",
"version": "1.5.0",
"main": "src/logger.js",
"ignore": [
"**/.*",
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "js-logger",
"version": "1.4.1",
"version": "1.5.0",
"license": "MIT",
"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.4.1";
Logger.VERSION = "1.5.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 b340398

Please sign in to comment.