Skip to content

Commit

Permalink
chore: release 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dongnaebi committed Mar 5, 2023
1 parent ce25ee8 commit 2b3361d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions packages/axues/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

# [0.7.0](https://github.com/rotick/axues/compare/0.6.1...0.7.0) (2023-03-05)

### Features

- use `debounce` instead of `debounceMode`, it will be deprecated in next major version ([ce25ee8](https://github.com/rotick/axues/commit/ce25ee8f0daf16f3fb13d64bf0d2962eca1b8b76))

## [0.6.1](https://github.com/rotick/axues/compare/0.6.0...0.6.1) (2023-02-19)

### Performance Improvements
Expand Down
6 changes: 3 additions & 3 deletions packages/axues/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,8 @@ import { useAxues } from 'axues'
const keyword = ref('')
const { data, action } = useAxues({
url: '/api/foo',
params: { keyword },
debounceMode: 'lastPass',
params: () => ({ keyword: keyword.value }),
debounce: true,
debounceTime: 600 // default: 500 (ms)
})
</script>
Expand Down Expand Up @@ -618,7 +618,7 @@ interface UseAxuesOptions<TI = any, TO = any, TAction = any> extends AxuesReques
immediate?: boolean
initialData?: TO
shallow?: boolean
debounceMode?: 'firstPass' | 'lastPass' | 'none'
debounce?: boolean
debounceTime?: number
autoRetryTimes?: number
autoRetryInterval?: number
Expand Down
2 changes: 1 addition & 1 deletion packages/axues/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "axues",
"version": "0.6.1",
"version": "0.7.0",
"description": "Vue composable powered by axios for easier request state management, axios + vue = axues ✌️",
"keywords": [
"axios",
Expand Down

0 comments on commit 2b3361d

Please sign in to comment.