Skip to content

Commit

Permalink
v1.1.7 (Meteor: v1.2.7)
Browse files Browse the repository at this point in the history
 - 🔥 Hot fixes over codebase, update is highly recommended
 - 📦 [Meteor ☄️] Internal dependencies update
 - 🤝 [Meteor ☄️] Compatibility with `[email protected]`
 - 📄 License year bump
  • Loading branch information
dr-dimitru committed Jan 12, 2019
1 parent 704bfc4 commit 310127d
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 20 deletions.
28 changes: 14 additions & 14 deletions .versions
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
babel-compiler@7.1.1
babel-runtime@1.2.4
dynamic-import@0.4.2
ecmascript@0.11.1
babel-compiler@7.2.4
babel-runtime@1.3.0
dynamic-import@0.5.0
ecmascript@0.12.4
[email protected]
ecmascript-runtime-client@0.7.1
[email protected].0
[email protected]
[email protected].0
[email protected].2
modules@0.12.2
modules-runtime@0.10.0
ostrio:[email protected]
[email protected]
[email protected]
ecmascript-runtime-client@0.8.0
[email protected].1
[email protected]
[email protected].0
[email protected].2
modern-browsers@0.1.3
modules@0.13.0
[email protected]
ostrio:[email protected]
[email protected]
4 changes: 2 additions & 2 deletions lib/analytics.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ module.exports = (function () {
this.current = '';
this.auto = !(auto === false);
this._euc = encodeURIComponent || function (str) {return str;};
this.info = console.info || console.log || function () {return;};
this.warn = console.warn || console.log || function () {return;};
this.info = console.info.bind(console) || console.log.bind(console) || function () {return;};
this.warn = console.warn.bind(console) || console.log.bind(console) || function () {return;};
this.errs = [];

if (this.DNT) {
Expand Down
2 changes: 1 addition & 1 deletion lib/analytics.min.js

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

4 changes: 2 additions & 2 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
name: 'ostrio:analytics',
version: '1.2.6',
version: '1.2.7',
summary: 'Visitor\'s web analytics tracking code for ostr.io service',
git: 'https://github.com/VeliovGroup/ostrio-analytics',
documentation: 'README.md'
Expand All @@ -13,5 +13,5 @@ Package.onUse(function(api) {
});

Npm.depends({
'ostrio-analytics': '1.1.6'
'ostrio-analytics': '1.1.7'
});
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ostrio-analytics",
"version": "1.1.6",
"version": "1.1.7",
"description": "Visitor's web analytics tracking code for ostr.io service",
"main": "./lib/analytics.js",
"scripts": {
Expand Down

0 comments on commit 310127d

Please sign in to comment.