Skip to content

Commit 0839317

Browse files
committed
v2.7.1 patch
1 parent 2f08848 commit 0839317

File tree

9 files changed

+10
-8
lines changed

9 files changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## Unreleased
22

3+
## 2.7.1 (February 18, 2016)
4+
35
* Validate event properties during logEvent and initialization before sending request.
46

57
## 2.7.0 (December 1, 2015)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Amplitude-Javascript
1010
```
1111
<script type="text/javascript">
1212
(function(t,e){var n=t.amplitude||{};var r=e.createElement("script");r.type="text/javascript";
13-
r.async=true;r.src="https://d24n15hnbwhuhn.cloudfront.net/libs/amplitude-2.7.0-min.gz.js";
13+
r.async=true;r.src="https://d24n15hnbwhuhn.cloudfront.net/libs/amplitude-2.7.1-min.gz.js";
1414
r.onload=function(){t.amplitude.runQueuedFunctions()};var s=e.getElementsByTagName("script")[0];
1515
s.parentNode.insertBefore(r,s);var i=function(){this._q=[];return this};function o(t){
1616
i.prototype[t]=function(){this._q.push([t].concat(Array.prototype.slice.call(arguments,0)));

amplitude-snippet.min.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(function(t,e){var n=t.amplitude||{};var r=e.createElement("script");r.type="text/javascript";
2-
r.async=true;r.src="https://d24n15hnbwhuhn.cloudfront.net/libs/amplitude-2.7.0-min.gz.js";
2+
r.async=true;r.src="https://d24n15hnbwhuhn.cloudfront.net/libs/amplitude-2.7.1-min.gz.js";
33
r.onload=function(){t.amplitude.runQueuedFunctions()};var s=e.getElementsByTagName("script")[0];
44
s.parentNode.insertBefore(r,s);var i=function(){this._q=[];return this};function o(t){
55
i.prototype[t]=function(){this._q.push([t].concat(Array.prototype.slice.call(arguments,0)));

amplitude.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3614,7 +3614,7 @@ module.exports = uuid;
36143614

36153615
}, {}],
36163616
13: [function(require, module, exports) {
3617-
module.exports = '2.7.0';
3617+
module.exports = '2.7.1';
36183618

36193619
}, {}],
36203620
14: [function(require, module, exports) {

amplitude.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"main": "src/index.js",
44
"repo": "amplitude/amplitude-javascript",
55
"description": "Javascript library for Amplitude Analytics",
6-
"version": "2.7.0",
6+
"version": "2.7.1",
77
"keywords": [
88
"analytics",
99
"amplitude"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "amplitude-js",
33
"author": "Amplitude <[email protected]>",
4-
"version": "2.7.0",
4+
"version": "2.7.1",
55
"license": "MIT",
66
"description": "Javascript library for Amplitude Analytics",
77
"keywords": [

src/amplitude-snippet.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
var as = document.createElement('script');
44
as.type = 'text/javascript';
55
as.async = true;
6-
as.src = 'https://d24n15hnbwhuhn.cloudfront.net/libs/amplitude-2.7.0-min.gz.js';
6+
as.src = 'https://d24n15hnbwhuhn.cloudfront.net/libs/amplitude-2.7.1-min.gz.js';
77
as.onload = function() { window.amplitude.runQueuedFunctions(); };
88
var s = document.getElementsByTagName('script')[0];
99
s.parentNode.insertBefore(as, s);

src/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = '2.7.0';
1+
module.exports = '2.7.1';

0 commit comments

Comments
 (0)