diff --git a/CHANGELOG.md b/CHANGELOG.md index 09f6835..ea56649 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # CHANGELOG 📝 -## v0.0.4 2024-02-20 +## v0.0.5 2024-02-20 + +- fix: github actions release + +## v0.0.4 - feat: support url as first paramter in xiorInstance.request('/url') - feat: mark `headers` and `params` types as `Record` and not undefined in interceptors diff --git a/package.json b/package.json index 572f402..f1af284 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xior", - "version": "0.0.4", + "version": "0.0.5", "description": "Axios similiar API request library but based on fetch", "repository": "suhaotian/xior", "bugs": "https://github.com/suhaotian/xior/issues", @@ -19,7 +19,7 @@ "build:lib": "rm -rf lib && tsc --project tsconfig.json", "test": "pnpm build:lib && node --test", "checktype": "tsc --noEmit", - "start-publish": "pnpm test && npm publish --registry=https://registry.npmjs.org", + "start-publish": "pnpm build && pnpm test && npm publish --registry=https://registry.npmjs.org", "push": "git push && git lfs push --all origin", "prepare": "is-ci || pnpm build && husky" },