From a481e3f38f88279289cb9a8eb1f794aff8d611e1 Mon Sep 17 00:00:00 2001 From: Shinigami92 Date: Thu, 7 Jul 2022 19:20:16 +0200 Subject: [PATCH] v2.0.0-beta.2 --- CHANGELOG.md | 7 ++++--- package.json | 2 +- tsconfig.json | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af06830..2d5543a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,16 @@ # Next -[diff](https://github.com/gtm-support/vue-gtm/compare/2.0.0-beta.1...main) +[diff](https://github.com/gtm-support/vue-gtm/compare/2.0.0-beta.2...main) -# 2.0.0-beta.1 +# 2.0.0-beta.2 -[diff](https://github.com/gtm-support/vue-gtm/compare/1.6.0...2.0.0-beta.1) +[diff](https://github.com/gtm-support/vue-gtm/compare/1.6.0...2.0.0-beta.2) ## BREAKING CHANGE - Minimum required Vue version is now `^3.2.0` - Minimum required Vue Router version is now `^4.1.0` +- Minimum required EcmaScript is now `ES2018` # 1.6.0 diff --git a/package.json b/package.json index f5e75a3..3723299 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@gtm-support/vue-gtm", - "version": "2.0.0-beta.1", + "version": "2.0.0-beta.2", "description": "Simple implementation of Google Tag Manager for Vue", "main": "dist/index.js", "author": { diff --git a/tsconfig.json b/tsconfig.json index 69dadfb..213119d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "target": "ES5", + "target": "ES2018", "module": "CommonJS", "inlineSourceMap": false, "lib": ["ES2020", "DOM"],