From 3d298ecc0cebfe7e771821ff3df8b11236a509f9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fernando=20Fern=C3=A1ndez?= <ferferga@hotmail.com>
Date: Tue, 29 Nov 2022 15:31:17 +0100
Subject: [PATCH 1/2] Target ES6 properly

---
 tsconfig.json | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/tsconfig.json b/tsconfig.json
index f3dbd3b3f..ba2f8877c 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,7 +1,9 @@
 {
   "extends": "@tsconfig/recommended/tsconfig.json",
   "compilerOptions": {
-    "target": "ES5",
+    "target": "ES6",
+    "module": "ES6",
+    "moduleResolution": "Node",
     "declaration": true,
     "noImplicitAny": true,
     "outDir": "lib"

From 2554eafc1bbde2dc8dd00113bdb0b8e8afeed92e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fernando=20Fern=C3=A1ndez?= <ferferga@hotmail.com>
Date: Sun, 4 Dec 2022 22:38:16 +0000
Subject: [PATCH 2/2] Address ES2015 versioning comments and breaking changes

* Add the switch to ES6/ES2015 to the breaking changes section of the readme
* Add the switch to Axios v1 major version to the breaking changes section of the readme
---
 README.md     | 7 +++++++
 tsconfig.json | 4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 366587fed..a9ecd2407 100644
--- a/README.md
+++ b/README.md
@@ -103,6 +103,13 @@ await api.logout();
 
 ## Breaking Changes
 
+### v0.8.0
+
+* The library is now fully targeted to ES6/ES2015.
+  [#341](https://github.com/jellyfin/jellyfin-sdk-typescript/pull/341)
+* Axios received a major version upgrade.
+  [#300](https://github.com/jellyfin/jellyfin-sdk-typescript/pull/300)
+
 ### v0.7.0
 
 * Renamed package to @jellyfin/sdk.
diff --git a/tsconfig.json b/tsconfig.json
index ba2f8877c..ac7a9b9b7 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,8 +1,8 @@
 {
   "extends": "@tsconfig/recommended/tsconfig.json",
   "compilerOptions": {
-    "target": "ES6",
-    "module": "ES6",
+    "target": "ES2015",
+    "module": "ES2015",
     "moduleResolution": "Node",
     "declaration": true,
     "noImplicitAny": true,