Skip to content

Commit

Permalink
chore(all): prepare release 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Mar 26, 2017
1 parent 5d53a06 commit 7ff8aeb
Show file tree
Hide file tree
Showing 10 changed files with 42 additions and 40 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ This library is part of the [Aurelia](http://www.aurelia.io/) platform and conta

This library can be used in the **browser** as well as on the **server**.

When used alone in pre-ES6 environments, this library requires an `Object.assign` polyfill (or import `aurelia-polyfills`).

## Building The Code

To build the code, follow these steps.
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": "aurelia-logging",
"version": "1.3.0",
"version": "1.3.1",
"description": "A minimal but effective logging mechanism with support for log levels and pluggable log appenders.",
"keywords": [
"aurelia",
Expand Down
11 changes: 5 additions & 6 deletions dist/amd/aurelia-logging.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,11 @@ define(['exports'], function (exports) {
}

function connectLoggers() {
Object.assign(Logger.prototype, {
debug: logFactory('debug'),
info: logFactory('info'),
warn: logFactory('warn'),
error: logFactory('error')
});
var proto = Logger.prototype;
proto.debug = logFactory('debug');
proto.info = logFactory('info');
proto.warn = logFactory('warn');
proto.error = logFactory('error');
}

function getLogger(id) {
Expand Down
11 changes: 5 additions & 6 deletions dist/aurelia-logging.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,11 @@ function logFactory(level) {
}

function connectLoggers() {
Object.assign(Logger.prototype, {
debug: logFactory('debug'),
info: logFactory('info'),
warn: logFactory('warn'),
error: logFactory('error')
});
let proto = Logger.prototype;
proto.debug = logFactory('debug');
proto.info = logFactory('info');
proto.warn = logFactory('warn');
proto.error = logFactory('error');
}

/**
Expand Down
11 changes: 5 additions & 6 deletions dist/commonjs/aurelia-logging.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,11 @@ function logFactory(level) {
}

function connectLoggers() {
Object.assign(Logger.prototype, {
debug: logFactory('debug'),
info: logFactory('info'),
warn: logFactory('warn'),
error: logFactory('error')
});
var proto = Logger.prototype;
proto.debug = logFactory('debug');
proto.info = logFactory('info');
proto.warn = logFactory('warn');
proto.error = logFactory('error');
}

function getLogger(id) {
Expand Down
11 changes: 5 additions & 6 deletions dist/es2015/aurelia-logging.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,11 @@ function logFactory(level) {
}

function connectLoggers() {
Object.assign(Logger.prototype, {
debug: logFactory('debug'),
info: logFactory('info'),
warn: logFactory('warn'),
error: logFactory('error')
});
let proto = Logger.prototype;
proto.debug = logFactory('debug');
proto.info = logFactory('info');
proto.warn = logFactory('warn');
proto.error = logFactory('error');
}

export function getLogger(id) {
Expand Down
11 changes: 5 additions & 6 deletions dist/native-modules/aurelia-logging.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,11 @@ function logFactory(level) {
}

function connectLoggers() {
Object.assign(Logger.prototype, {
debug: logFactory('debug'),
info: logFactory('info'),
warn: logFactory('warn'),
error: logFactory('error')
});
var proto = Logger.prototype;
proto.debug = logFactory('debug');
proto.info = logFactory('info');
proto.warn = logFactory('warn');
proto.error = logFactory('error');
}

export function getLogger(id) {
Expand Down
11 changes: 5 additions & 6 deletions dist/system/aurelia-logging.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,11 @@ System.register([], function (_export, _context) {
}

function connectLoggers() {
Object.assign(Logger.prototype, {
debug: logFactory('debug'),
info: logFactory('info'),
warn: logFactory('warn'),
error: logFactory('error')
});
var proto = Logger.prototype;
proto.debug = logFactory('debug');
proto.info = logFactory('info');
proto.warn = logFactory('warn');
proto.error = logFactory('error');
}

function getLogger(id) {
Expand Down
10 changes: 10 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="1.3.1"></a>
## [1.3.1](https://github.com/aurelia/logging/compare/1.3.0...v1.3.1) (2017-03-26)


### Bug Fixes

* **logging:** restore ES5 compatibility ([70bb834](https://github.com/aurelia/logging/commit/70bb834))



<a name="1.3.0"></a>
# [1.3.0](https://github.com/aurelia/logging/compare/1.2.0...v1.3.0) (2017-02-21)

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": "aurelia-logging",
"version": "1.3.0",
"version": "1.3.1",
"description": "A minimal but effective logging mechanism with support for log levels and pluggable log appenders.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 7ff8aeb

Please sign in to comment.