diff --git a/CHANGELOG.md b/CHANGELOG.md index 77a9e98..6625477 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# [2.5.0](https://github.com/zjx0905/axios-miniprogram/compare/v2.4.2...v2.5.0) (2023-06-04) + + +### Features + +* 移除内置的 uni 适配器 ([96ea026](https://github.com/zjx0905/axios-miniprogram/commit/96ea0266dd7c0da26341d8fea4d3bdb53361ffd0)), closes [#40](https://github.com/zjx0905/axios-miniprogram/issues/40) + + +### BREAKING CHANGES + +* uni 不再内部支持, 可以参阅文档中的自定义适配器自行适配 uni + + + ## [2.4.2](https://github.com/zjx0905/axios-miniprogram/compare/v2.4.1...v2.4.2) (2023-05-14) diff --git a/package.json b/package.json index e21d716..7b02e21 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "axios-miniprogram", - "version": "2.4.2", + "version": "2.5.0", "description": "基于 Promise 的 HTTP 请求库,适用于各大小程序平台。", "main": "dist/axios-miniprogram.cjs.js", "module": "dist/axios-miniprogram.esm.js", diff --git a/src/version.ts b/src/version.ts index ccce509..93c0fcd 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const version = '2.4.2'; +export const version = '2.5.0';