Skip to content

Commit

Permalink
chore(all): prepare release 1.0.0-beta.1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed May 10, 2016
1 parent 85fb4b6 commit a52571d
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 7 deletions.
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.0.0-beta.1.2.0",
"version": "1.0.0-beta.1.2.1",
"description": "A minimal but effective logging mechanism with support for log levels and pluggable log appenders.",
"keywords": [
"aurelia",
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/aurelia-logging.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ define(['exports'], function (exports) {
_classCallCheck(this, Logger);

if (key !== loggerConstructionKey) {
throw new Error('You cannot instantiate "Logger". Use the "getLogger" API instead.');
throw new Error('Cannot instantiate "Logger". Use "getLogger" instead.');
}

this.id = id;
Expand Down
2 changes: 1 addition & 1 deletion dist/aurelia-logging.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ export class Logger {
*/
constructor(id: string, key: Object) {
if (key !== loggerConstructionKey) {
throw new Error('You cannot instantiate "Logger". Use the "getLogger" API instead.');
throw new Error('Cannot instantiate "Logger". Use "getLogger" instead.');
}

this.id = id;
Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/aurelia-logging.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ var Logger = exports.Logger = function () {
_classCallCheck(this, Logger);

if (key !== loggerConstructionKey) {
throw new Error('You cannot instantiate "Logger". Use the "getLogger" API instead.');
throw new Error('Cannot instantiate "Logger". Use "getLogger" instead.');
}

this.id = id;
Expand Down
2 changes: 1 addition & 1 deletion dist/es2015/aurelia-logging.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export function setLevel(level) {
export let Logger = class Logger {
constructor(id, key) {
if (key !== loggerConstructionKey) {
throw new Error('You cannot instantiate "Logger". Use the "getLogger" API instead.');
throw new Error('Cannot instantiate "Logger". Use "getLogger" instead.');
}

this.id = id;
Expand Down
2 changes: 1 addition & 1 deletion dist/system/aurelia-logging.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ System.register([], function (_export, _context) {
_classCallCheck(this, Logger);

if (key !== loggerConstructionKey) {
throw new Error('You cannot instantiate "Logger". Use the "getLogger" API instead.');
throw new Error('Cannot instantiate "Logger". Use "getLogger" instead.');
}

this.id = id;
Expand Down
3 changes: 3 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 1.0.0-beta.1.2.1 (2016-05-10)


### 1.0.0-beta.1.2.0 (2016-03-22)

* Update to Babel 6
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.0.0-beta.1.2.0",
"version": "1.0.0-beta.1.2.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 a52571d

Please sign in to comment.