Skip to content

Commit 24f144a

Browse files
committed
chore: add release template file
1 parent 19c6cbf commit 24f144a

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/release-template.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
# 2.0.0-beta.0 (2022-07-17)
3+
This is the first 2.0 beta version. Still change until the stable release. Documentation will also be updated once stable.
4+
5+
# Breakings
6+
## `loading` is renamed to `isLoading`
7+
``` diff
8+
- const { loading } = useConditionWatcher({...})
9+
+ const { isLoading } = useConditionWatcher({...})
10+
```
11+
12+
## Change `export` to `export default`
13+
``` diff
14+
- import { useConditionWatcher } from 'vue-condition-watcher'
15+
+ import useConditionWatcher from 'vue-condition-watcher'
16+
```
17+
18+
# What's Changed
19+
20+
- chore: Switch to pnpm & turborepo & vitest
21+
- breaking: rename loading to isLoading
22+
- fix: `beforeFetch` receive conditions type
23+
24+
### Full Changelog: https://github.com/runkids/vue-condition-watcher/compare/1.4.7...2.0.0-beta.0

0 commit comments

Comments
 (0)