Skip to content

Commit 87b42c1

Browse files
chore(release): 7.4.4 [skip ci]
## [7.4.4](v7.4.3...v7.4.4) (2021-03-02) ### Bug Fixes * remove only test and small robustness regression ([#357](#357)) ([9f7b036](9f7b036))
1 parent 87d0d3f commit 87b42c1

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [7.4.4](https://github.com/amplitude/amplitude-javascript/compare/v7.4.3...v7.4.4) (2021-03-02)
2+
3+
4+
### Bug Fixes
5+
6+
* remove only test and small robustness regression ([#357](https://github.com/amplitude/amplitude-javascript/issues/357)) ([9f7b036](https://github.com/amplitude/amplitude-javascript/commit/9f7b036aacd2e8e5ed4b27d2744c23c9e00b899e))
7+
18
## [7.4.3](https://github.com/amplitude/amplitude-javascript/compare/v7.4.2...v7.4.3) (2021-02-24)
29

310

package.json

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

src/amplitude-snippet.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
var as = document.createElement('script');
1010
as.type = 'text/javascript';
1111
// Don't edit as.integrity, it is tracked by semantic-release-bot during releases
12-
as.integrity = 'sha384-wHgyPgXPR84rOziWbUGkBBHDE5UxqcKioyjRy6a78Y6UP1keevyRnqTDZwoEhEea';
12+
as.integrity = 'sha384-Qxj6E1kKIQnX+gpSZG9SJrDSYu7f/diMDfg+NK/Bss9jX/qPxRUlilsnDmDJpZuL';
1313
as.crossOrigin = 'anonymous';
1414
as.async = true;
1515
// Don't edit as.src, it is tracked by semantic-release-bot during releases
16-
as.src = 'https://cdn.amplitude.com/libs/amplitude-7.4.3-min.gz.js';
16+
as.src = 'https://cdn.amplitude.com/libs/amplitude-7.4.4-min.gz.js';
1717
as.onload = function () {
1818
if (!window.amplitude.runQueuedFunctions) {
1919
console.log('[Amplitude] Error: could not load SDK');

0 commit comments

Comments
 (0)