From bc29ee3ae8f0102fca4103789687c139b6fda6ac Mon Sep 17 00:00:00 2001 From: david-vaclavek <49518842+david-vaclavek@users.noreply.github.com> Date: Thu, 18 Apr 2024 11:56:05 +0000 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=9A=80=20release:=202.1.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 18 ++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b54d77..95a77ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +## 2.1.1 (2024-04-18) +### 🔀 Pull Requests + +- [Replace axios with fetch #11](https://github.com/localazy/api-client/pull/11) + +### ✨ Features + +- Replace axios with fetch ([64f7573](https://github.com/localazy/api-client/commit/64f7573)) ([#11](https://github.com/localazy/api-client/pull/11)) + +### 🐛 Bug Fixes + +- Add missing content type header ([64f7573](https://github.com/localazy/api-client/commit/64f7573)) ([#11](https://github.com/localazy/api-client/pull/11)) +- Fix missing query params ([64f7573](https://github.com/localazy/api-client/commit/64f7573)) ([#11](https://github.com/localazy/api-client/pull/11)) + +### 📚 Documentation + +- Update README.md ([64f7573](https://github.com/localazy/api-client/commit/64f7573)) ([#11](https://github.com/localazy/api-client/pull/11)) + # 2.1.0 (2024-04-15) ### ✨ Features diff --git a/package-lock.json b/package-lock.json index cd0d03e..3783774 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@localazy/api-client", - "version": "2.1.0", + "version": "2.1.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@localazy/api-client", - "version": "2.1.0", + "version": "2.1.1", "license": "MIT", "dependencies": { "@localazy/languages": "^0.1.6", diff --git a/package.json b/package.json index 635ffe1..1eef14d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@localazy/api-client", - "version": "2.1.0", + "version": "2.1.1", "description": "Node.js module that allows you to easily interact with the Localazy API.", "author": "Localazy ", "license": "MIT", From 20abbe590e2691710d5b2270acd73eb2f91c031d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Buben=C3=ADk?= Date: Thu, 18 Apr 2024 14:04:10 +0200 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=92=84=20style:=20Fix=20prettier?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 95a77ec..66f2d6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ ## 2.1.1 (2024-04-18) + ### 🔀 Pull Requests - [Replace axios with fetch #11](https://github.com/localazy/api-client/pull/11)