Skip to content

Commit

Permalink
chore: release v9.0.0-beta.2
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Jul 24, 2022
1 parent 26aae65 commit c20bfdb
Show file tree
Hide file tree
Showing 16 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vueuse/monorepo",
"version": "9.0.0-beta.1",
"version": "9.0.0-beta.2",
"private": true,
"packageManager": "pnpm@7.6.0",
"description": "Collection of essential Vue Composition Utilities",
Expand Down
16 changes: 8 additions & 8 deletions packages/add-ons.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ Schema.org for Vue. Supports typed and automated Google Rich Results
<!--ADDONS_LIST_STARTS-->
## Router - [`@vueuse/router`](https://vueuse.org/router/README.html)
Utilities for vue-router
- [`useRouteHash`](https://vueuse.org/router/useRouteHash/) — shorthand for reactive route.hash
- [`useRouteParams`](https://vueuse.org/router/useRouteParams/) — shorthand for reactive route.params
- [`useRouteQuery`](https://vueuse.org/router/useRouteQuery/) — shorthand for reactive route.query
- [`useRouteHash`](https://vueuse.org/router/useRouteHash/) — shorthand for a reactive `route.hash`
- [`useRouteParams`](https://vueuse.org/router/useRouteParams/) — shorthand for a reactive `route.params`
- [`useRouteQuery`](https://vueuse.org/router/useRouteQuery/) — shorthand for a reactive `route.query`


## Integrations - [`@vueuse/integrations`](https://vueuse.org/integrations/README.html)
Expand All @@ -85,10 +85,10 @@ Integration wrappers for utility libraries
## RxJS - [`@vueuse/rxjs`](https://vueuse.org/rxjs/README.html)
Enables RxJS reactive functions in Vue
- [`from`](https://vueuse.org/rxjs/from/) — / fromEvent
- [`toObserver`](https://vueuse.org/rxjs/toObserver/) — sugar function to convert a ref in an observer
- [`useObservable`](https://vueuse.org/rxjs/useObservable/) — use an Observable
- [`useSubject`](https://vueuse.org/rxjs/useSubject/) — bind Subject to ref and propagate value changes both ways
- [`useSubscription`](https://vueuse.org/rxjs/useSubscription/)uses subscriptions without worry about unsubscribing to it or memory leaks
- [`toObserver`](https://vueuse.org/rxjs/toObserver/) — sugar function to convert a `ref` into an RxJS [Observer](https://rxjs.dev/guide/observer)
- [`useObservable`](https://vueuse.org/rxjs/useObservable/) — use an RxJS [`Observable`](https://rxjs.dev/guide/observable)
- [`useSubject`](https://vueuse.org/rxjs/useSubject/) — bind an RxJS [`Subject`](https://rxjs.dev/guide/subject) to a `ref` and propagate value changes both ways
- [`useSubscription`](https://vueuse.org/rxjs/useSubscription/)use an RxJS [`Subscription`](https://rxjs.dev/guide/subscription) without worrying about unsubscribing from it or creating memory leaks


## Firebase - [`@vueuse/firebase`](https://vueuse.org/firebase/README.html)
Expand All @@ -100,7 +100,7 @@ Enables realtime bindings for Firebase

## Electron - [`@vueuse/electron`](https://vueuse.org/electron/README.html)
Electron renderer process modules for VueUse
- [`useIpcRenderer`](https://vueuse.org/electron/useIpcRenderer/) — provides [ipcRenderer](https://www.electronjs.org/docs/api/ipc-renderer) and it's all APIs
- [`useIpcRenderer`](https://vueuse.org/electron/useIpcRenderer/) — provides [ipcRenderer](https://www.electronjs.org/docs/api/ipc-renderer) and all of its APIs
- [`useIpcRendererInvoke`](https://vueuse.org/electron/useIpcRendererInvoke/) — reactive [ipcRenderer.invoke API](https://www.electronjs.org/docs/api/ipc-renderer#ipcrendererinvokechannel-args) result
- [`useIpcRendererOn`](https://vueuse.org/electron/useIpcRendererOn/) — use [ipcRenderer.on](https://www.electronjs.org/docs/api/ipc-renderer#ipcrendereronchannel-listener) with ease and [ipcRenderer.removeListener](https://www.electronjs.org/docs/api/ipc-renderer#ipcrendererremovelistenerchannel-listener) automatically on unmounted
- [`useZoomFactor`](https://vueuse.org/electron/useZoomFactor/) — reactive [WebFrame](https://www.electronjs.org/docs/api/web-frame#webframe) zoom factor
Expand Down
2 changes: 1 addition & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vueuse/components",
"version": "9.0.0-beta.1",
"version": "9.0.0-beta.2",
"description": "Renderless components for VueUse",
"author": "Jacob Clevenger<https://github.com/wheatjs>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vueuse/core",
"version": "9.0.0-beta.1",
"version": "9.0.0-beta.2",
"description": "Collection of essential Vue Composition Utilities",
"author": "Anthony Fu <https://github.com/antfu>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/electron/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ npm i <b>@vueuse/electron</b> electron

<!--GENERATED LIST, DO NOT MODIFY MANUALLY-->
<!--FUNCTIONS_LIST_STARTS-->
- [`useIpcRenderer`](https://vueuse.org/electron/useIpcRenderer/) — provides [ipcRenderer](https://www.electronjs.org/docs/api/ipc-renderer) and it's all APIs
- [`useIpcRenderer`](https://vueuse.org/electron/useIpcRenderer/) — provides [ipcRenderer](https://www.electronjs.org/docs/api/ipc-renderer) and all of its APIs
- [`useIpcRendererInvoke`](https://vueuse.org/electron/useIpcRendererInvoke/) — reactive [ipcRenderer.invoke API](https://www.electronjs.org/docs/api/ipc-renderer#ipcrendererinvokechannel-args) result
- [`useIpcRendererOn`](https://vueuse.org/electron/useIpcRendererOn/) — use [ipcRenderer.on](https://www.electronjs.org/docs/api/ipc-renderer#ipcrendereronchannel-listener) with ease and [ipcRenderer.removeListener](https://www.electronjs.org/docs/api/ipc-renderer#ipcrendererremovelistenerchannel-listener) automatically on unmounted
- [`useZoomFactor`](https://vueuse.org/electron/useZoomFactor/) — reactive [WebFrame](https://www.electronjs.org/docs/api/web-frame#webframe) zoom factor
Expand Down
2 changes: 1 addition & 1 deletion packages/electron/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vueuse/electron",
"version": "9.0.0-beta.1",
"version": "9.0.0-beta.2",
"description": "Electron renderer process modules for VueUse",
"author": "Archer Gu<https://github.com/ArcherGu>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/firebase/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vueuse/firebase",
"version": "9.0.0-beta.1",
"version": "9.0.0-beta.2",
"description": "Enables realtime bindings for Firebase",
"author": "Anthony Fu <https://github.com/antfu>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vueuse/integrations",
"version": "9.0.0-beta.1",
"version": "9.0.0-beta.2",
"description": "Integration wrappers for utility libraries",
"author": "Anthony Fu <https://github.com/antfu>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/math/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vueuse/math",
"version": "9.0.0-beta.1",
"version": "9.0.0-beta.2",
"description": "Math functions for VueUse",
"author": "Anthony Fu <https://github.com/antfu>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/metadata/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vueuse/metadata",
"version": "9.0.0-beta.1",
"version": "9.0.0-beta.2",
"description": "Metadata for VueUse functions",
"author": "Anthony Fu <https://github.com/antfu>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/nuxt/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vueuse/nuxt",
"version": "9.0.0-beta.1",
"version": "9.0.0-beta.2",
"description": "VueUse Nuxt Module",
"author": "Anthony Fu <https://github.com/antfu>",
"license": "MIT",
Expand Down
6 changes: 3 additions & 3 deletions packages/router/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ npm i <b>@vueuse/router</b> vue-router@4

<!--GENERATED LIST, DO NOT MODIFY MANUALLY-->
<!--FUNCTIONS_LIST_STARTS-->
- [`useRouteHash`](https://vueuse.org/router/useRouteHash/) — shorthand for reactive route.hash
- [`useRouteParams`](https://vueuse.org/router/useRouteParams/) — shorthand for reactive route.params
- [`useRouteQuery`](https://vueuse.org/router/useRouteQuery/) — shorthand for reactive route.query
- [`useRouteHash`](https://vueuse.org/router/useRouteHash/) — shorthand for a reactive `route.hash`
- [`useRouteParams`](https://vueuse.org/router/useRouteParams/) — shorthand for a reactive `route.params`
- [`useRouteQuery`](https://vueuse.org/router/useRouteQuery/) — shorthand for a reactive `route.query`


<!--FUNCTIONS_LIST_ENDS-->
Expand Down
2 changes: 1 addition & 1 deletion packages/router/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vueuse/router",
"version": "9.0.0-beta.1",
"version": "9.0.0-beta.2",
"description": "Utilities for vue-router",
"author": "Anthony Fu <https://github.com/antfu>",
"license": "MIT",
Expand Down
8 changes: 4 additions & 4 deletions packages/rxjs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ npm i <b>@vueuse/rxjs</b> rxjs
<!--GENERATED LIST, DO NOT MODIFY MANUALLY-->
<!--FUNCTIONS_LIST_STARTS-->
- [`from`](https://vueuse.org/rxjs/from/) — / fromEvent
- [`toObserver`](https://vueuse.org/rxjs/toObserver/) — sugar function to convert a ref in an observer
- [`useObservable`](https://vueuse.org/rxjs/useObservable/) — use an Observable
- [`useSubject`](https://vueuse.org/rxjs/useSubject/) — bind Subject to ref and propagate value changes both ways
- [`useSubscription`](https://vueuse.org/rxjs/useSubscription/)uses subscriptions without worry about unsubscribing to it or memory leaks
- [`toObserver`](https://vueuse.org/rxjs/toObserver/) — sugar function to convert a `ref` into an RxJS [Observer](https://rxjs.dev/guide/observer)
- [`useObservable`](https://vueuse.org/rxjs/useObservable/) — use an RxJS [`Observable`](https://rxjs.dev/guide/observable)
- [`useSubject`](https://vueuse.org/rxjs/useSubject/) — bind an RxJS [`Subject`](https://rxjs.dev/guide/subject) to a `ref` and propagate value changes both ways
- [`useSubscription`](https://vueuse.org/rxjs/useSubscription/)use an RxJS [`Subscription`](https://rxjs.dev/guide/subscription) without worrying about unsubscribing from it or creating memory leaks


<!--FUNCTIONS_LIST_ENDS-->
Expand Down
2 changes: 1 addition & 1 deletion packages/rxjs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vueuse/rxjs",
"version": "9.0.0-beta.1",
"version": "9.0.0-beta.2",
"description": "Enables RxJS reactive functions in Vue",
"author": "Anthony Fu <https://github.com/antfu>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vueuse/shared",
"version": "9.0.0-beta.1",
"version": "9.0.0-beta.2",
"author": "Anthony Fu <https://github.com/antfu>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
Expand Down

0 comments on commit c20bfdb

Please sign in to comment.