Skip to content

Commit

Permalink
chore: add release template file
Browse files Browse the repository at this point in the history
  • Loading branch information
runkids committed Jul 17, 2022
1 parent 19c6cbf commit 24f144a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/release-template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

# 2.0.0-beta.0 (2022-07-17)
This is the first 2.0 beta version. Still change until the stable release. Documentation will also be updated once stable.

# Breakings
## `loading` is renamed to `isLoading`
``` diff
- const { loading } = useConditionWatcher({...})
+ const { isLoading } = useConditionWatcher({...})
```

## Change `export` to `export default`
``` diff
- import { useConditionWatcher } from 'vue-condition-watcher'
+ import useConditionWatcher from 'vue-condition-watcher'
```

# What's Changed

- chore: Switch to pnpm & turborepo & vitest
- breaking: rename loading to isLoading
- fix: `beforeFetch` receive conditions type

### Full Changelog: https://github.com/runkids/vue-condition-watcher/compare/1.4.7...2.0.0-beta.0

0 comments on commit 24f144a

Please sign in to comment.