Skip to content

Commit ef8316f

Browse files
committed
chore(release): 3.1.0
# [3.1.0](v3.0.0...v3.1.0) (2022-07-22) ### Bug Fixes * **tracker:** prevent initializing Matomo more than once ([784b1de](784b1de)) ### Code Refactoring * **tracker:** replace init() method with initialized() for naming consistency ([8e23baf](8e23baf)) ### Features * **tracker:** allow deferred trackers configuration ([cd51156](cd51156)), closes [#31](#31) [#54](#54) ### Deprecations * **tracker:** Method `MatomoInitializerService.init()` has been deprecated. Use `MatomoInitializerService.initialize()` instead.
1 parent 430b175 commit ef8316f

File tree

6 files changed

+30
-7
lines changed

6 files changed

+30
-7
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
# [3.1.0](https://github.com/EmmanuelRoux/ngx-matomo/compare/v3.0.0...v3.1.0) (2022-07-22)
2+
3+
4+
### Bug Fixes
5+
6+
* **tracker:** prevent initializing Matomo more than once ([784b1de](https://github.com/EmmanuelRoux/ngx-matomo/commit/784b1de06c5397820c1b5a6c185773813b06632f))
7+
8+
9+
### Code Refactoring
10+
11+
* **tracker:** replace init() method with initialized() for naming consistency ([8e23baf](https://github.com/EmmanuelRoux/ngx-matomo/commit/8e23baf6c99f9ba16cd35706fc40fe7d9de2c010))
12+
13+
14+
### Features
15+
16+
* **tracker:** allow deferred trackers configuration ([cd51156](https://github.com/EmmanuelRoux/ngx-matomo/commit/cd5115691d974e3bd08d13a9ad0a791f8b82b1ab)), closes [#31](https://github.com/EmmanuelRoux/ngx-matomo/issues/31) [#54](https://github.com/EmmanuelRoux/ngx-matomo/issues/54)
17+
18+
19+
### Deprecations
20+
21+
* **tracker:** Method `MatomoInitializerService.init()` has been deprecated.
22+
Use `MatomoInitializerService.initialize()` instead.
23+
124
# [3.0.0](https://github.com/EmmanuelRoux/ngx-matomo/compare/v2.4.2...v3.0.0) (2022-06-08)
225

326

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-matomo",
3-
"version": "3.0.0",
3+
"version": "3.1.0",
44
"author": "Emmanuel Roux (https://github.com/EmmanuelRoux)",
55
"description": "Matomo (fka. Piwik) client for Angular applications",
66
"keywords": [

projects/router/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngx-matomo/router",
3-
"version": "3.0.0",
3+
"version": "3.1.0",
44
"author": "Emmanuel Roux (https://github.com/EmmanuelRoux)",
55
"description": "Plugin or @ngx-matomo/tracker, a Matomo (fka. Piwik) client for Angular applications",
66
"keywords": [
@@ -13,7 +13,7 @@
1313
"@angular/common": "^14.0.0",
1414
"@angular/core": "^14.0.0",
1515
"@angular/router": "^14.0.0",
16-
"@ngx-matomo/tracker": "3.0.0"
16+
"@ngx-matomo/tracker": "3.1.0"
1717
},
1818
"dependencies": {
1919
"tslib": "^2.0.0"

projects/tracker/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ngx-matomo/tracker",
3-
"version": "3.0.0",
3+
"version": "3.1.0",
44
"author": "Emmanuel Roux (https://github.com/EmmanuelRoux)",
55
"description": "Matomo (fka. Piwik) client for Angular applications",
66
"keywords": [
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version = '^3.0.0';
1+
export const version = '^3.1.0';

0 commit comments

Comments
 (0)