From 1e1009679e393675057424c260c0eb665079af0a Mon Sep 17 00:00:00 2001 From: suhaotian Date: Sat, 30 Mar 2024 10:30:47 +1100 Subject: [PATCH] chore: bump to v0.3.5 and update CHANGELOG --- CHANGELOG.md | 4 ++++ package.json | 2 +- src/xior.ts | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 352bff1..1835b18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG 📝 +## v0.3.5 2024/03/30 + +- feat(plugin): add `onDedupe` to dedupe plugin for logging purpose + ## v0.3.2 2024/03/30 - feat: reduce build size use common `xior/utils` diff --git a/package.json b/package.json index ae04492..3ea30ee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xior", - "version": "0.3.4", + "version": "0.3.5", "description": "A lite request lib based on fetch with plugins support, and axios similar API", "repository": "suhaotian/xior", "bugs": "https://github.com/suhaotian/xior/issues", diff --git a/src/xior.ts b/src/xior.ts index fe4cc92..6864957 100644 --- a/src/xior.ts +++ b/src/xior.ts @@ -26,7 +26,7 @@ export class xior { static create(options?: XiorRequestConfig): XiorInstance { return new xior(options); } - static VERSION = '0.3.4'; + static VERSION = '0.3.5'; config?: XiorRequestConfig; defaults: XiorInterceptorRequestConfig;