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;