Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:lwhiteley/AngularLogExtender
Browse files Browse the repository at this point in the history
* 'develop' of github.com:lwhiteley/AngularLogExtender:
  release 0.0.5
  Release v0.0.5
  remove unecessary declaration
  • Loading branch information
ferronrsmith committed Jan 11, 2014
2 parents 7bc6f5c + 2746fa1 commit ad89d52
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 22 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@

0.0.4-sha.a415250 / 2014-01-10
==================

* remove unecessary declaration
* update submodule
* snapshot release
* release 0.0.4

0.0.3-sha.665adf9 / 2014-01-10
==================

Expand Down
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ module.exports = function (grunt) {
tagName: 'v%VERSION%',
tagMessage: 'Version %VERSION%',
push: true,
pushTo: 'origin',
pushTo: 'origin master',
gitDescribeOptions: '--tags --always --abbrev=1 --dirty=-d' // options to use with '$ git describe'
}
},
Expand Down
14 changes: 3 additions & 11 deletions dist/log-ex-unobtrusive.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Log Unobtrusive Extension v0.0.4-sha.d4c9720
* Log Unobtrusive Extension v0.0.5
*
* Used within AngularJS to enhance functionality within the AngularJS $log service.
*
Expand All @@ -26,16 +26,8 @@ angular.module("log.ex.uo", []).provider('logEx', ['$provide',

var enableGlobally = false;

// methods as object [constant]
var lm = {
log: 'log',
info: 'info',
warn: 'warn',
error: 'error',
debug: 'debug'
};
// default log methods available
var defaultLogMethods = [lm.log, lm.info, lm.warn, lm.debug, lm.error, 'getInstance'];
var defaultLogMethods = ['log', 'info', 'warn', 'debug', 'error', 'getInstance'];

/**
* publicly allowed methods for the extended $log object.
Expand Down Expand Up @@ -359,7 +351,7 @@ angular.module("log.ex.uo", []).provider('logEx', ['$provide',
this.$get = function() {
return {
name: 'Log Unobtrusive Extension',
version: '0.0.4-sha.d4c9720',
version: '0.0.5',
enableLogging: enableLogging,
restrictLogMethods: restrictLogMethods,
overrideLogPrefix: overrideLogPrefix
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"type": "MIT",
"url": "https://github.com/lwhiteley/AngularLogExtender/blob/master/LICENSE"
},
"version": "0.0.4-snapshot",
"version": "0.0.5",
"engine": "node >= 0.10.0",
"devDependencies": {
"karma": "~0.10.8",
Expand Down
10 changes: 1 addition & 9 deletions src/declarations.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,8 @@

var enableGlobally = false;

// methods as object [constant]
var lm = {
log: 'log',
info: 'info',
warn: 'warn',
error: 'error',
debug: 'debug'
};
// default log methods available
var defaultLogMethods = [lm.log, lm.info, lm.warn, lm.debug, lm.error, 'getInstance'];
var defaultLogMethods = ['log', 'info', 'warn', 'debug', 'error', 'getInstance'];

/**
* publicly allowed methods for the extended $log object.
Expand Down

0 comments on commit ad89d52

Please sign in to comment.