Skip to content

Commit

Permalink
chore: rc release
Browse files Browse the repository at this point in the history
RELEASE_ALL
  • Loading branch information
TkDodo committed Sep 25, 2023
1 parent 27b31f3 commit ce2c445
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Get appropriate base and head commits for `nx affected` commands
uses: nrwl/nx-set-shas@v3
with:
main-branch-name: 'beta'
main-branch-name: 'rc'
- run: |
echo "BASE: ${{ env.NX_BASE }}"
echo "HEAD: ${{ env.NX_HEAD }}"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<img src="https://static.scarf.sh/a.png?x-pxid=be2d8a11-9712-4c1d-9963-580b2d4fb133" />

![TanStack Query Header](https://github.com/TanStack/query/raw/beta/media/repo-header.png)
![TanStack Query Header](https://github.com/TanStack/query/raw/rc/media/repo-header.png)

Hooks for fetching, caching and updating asynchronous data in React, Solid, Svelte and Vue

Expand All @@ -12,8 +12,8 @@ Hooks for fetching, caching and updating asynchronous data in React, Solid, Svel
<img src="https://github.com/TanStack/query/workflows/react-query%20tests/badge.svg" />
</a><a href="https://www.npmjs.com/package/@tanstack/query-core" target="\_parent">
<img alt="" src="https://img.shields.io/npm/dm/@tanstack/query-core.svg" />
</a><a href="https://bundlejs.com/?q=%40tanstack%2Freact-query%40beta&config=%7B%22esbuild%22%3A%7B%22external%22%3A%5B%22react%22%2C%22react-dom%22%5D%7D%7D&badge=" target="\_parent">
<img alt="" src="https://deno.bundlejs.com/?q=@tanstack/react-query@beta&config={%22esbuild%22:{%22external%22:[%22react%22,%22react-dom%22]}}&badge=detailed" />
</a><a href="https://bundlejs.com/?q=%40tanstack%2Freact-query%rc&config=%7B%22esbuild%22%3A%7B%22external%22%3A%5B%22react%22%2C%22react-dom%22%5D%7D%7D&badge=" target="\_parent">
<img alt="" src="https://deno.bundlejs.com/?q=@tanstack/react-query@rc&config={%22esbuild%22:{%22external%22:[%22react%22,%22react-dom%22]}}&badge=detailed" />
</a><a href="#badge">
<img alt="semantic-release" src="https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg">
</a><a href="https://github.com/TanStack/query/discussions">
Expand Down
6 changes: 3 additions & 3 deletions docs/react/devtools.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ When you begin your React Query journey, you'll want these devtools by your side
The devtools are a separate package that you need to install:

```bash
$ npm i @tanstack/react-query-devtools@beta
$ npm i @tanstack/react-query-devtools@rc
# or
$ pnpm add @tanstack/react-query-devtools@beta
$ pnpm add @tanstack/react-query-devtools@rc
# or
$ yarn add @tanstack/react-query-devtools@beta
$ yarn add @tanstack/react-query-devtools@rc
```

You can import the devtools like this:
Expand Down
16 changes: 8 additions & 8 deletions docs/react/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ You can install React Query via [NPM](https://npmjs.com/),
or a good ol' `<script>` via
[ESM.sh](https://esm.sh/).

> v5 is currently in beta. We don't anticipate any major API changes from here on out, but we do expect some minor changes and fixes. We encourage you to try it out and report any issues you find.
> v5 is currently available as a release-candidate. We don't anticipate any major API changes from here on out. We encourage you to try it out and report any issues you find.
### NPM

```bash
$ npm i @tanstack/react-query@beta
$ npm i @tanstack/react-query@rc
# or
$ pnpm add @tanstack/react-query@beta
$ pnpm add @tanstack/react-query@rc
# or
$ yarn add @tanstack/react-query@beta
$ yarn add @tanstack/react-query@rc
```

React Query is compatible with React v18+ and works with ReactDOM and React Native.
Expand All @@ -31,7 +31,7 @@ If you're not using a module bundler or package manager, you can also use this l
<script type="module">
import React from 'https://esm.sh/[email protected]'
import ReactDOM from 'https://esm.sh/[email protected]'
import { QueryClient } from 'https://esm.sh/@tanstack/react-query@beta'
import { QueryClient } from 'https://esm.sh/@tanstack/react-query@rc'
</script>
```

Expand All @@ -57,9 +57,9 @@ opera >= 77
It is recommended to also use our [ESLint Plugin Query](./eslint/eslint-plugin-query) to help you catch bugs and inconsistencies while you code. You can install it via:

```bash
$ npm i -D @tanstack/eslint-plugin-query@beta
$ npm i -D @tanstack/eslint-plugin-query@rc
# or
$ pnpm add -D @tanstack/eslint-plugin-query@beta
$ pnpm add -D @tanstack/eslint-plugin-query@rc
# or
$ yarn add -D @tanstack/eslint-plugin-query@beta
$ yarn add -D @tanstack/eslint-plugin-query@rc
```
8 changes: 4 additions & 4 deletions docs/svelte/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ title: Installation

You can install Svelte Query via [NPM](https://npmjs.com).

> v5 is currently in beta. We don't anticipate any major API changes from here on out, but we do expect some minor changes and fixes. We encourage you to try it out and report any issues you find.
> v5 is currently available as a release-candidate. We don't anticipate any major API changes from here on out. We encourage you to try it out and report any issues you find.
### NPM

```bash
$ npm i @tanstack/svelte-query@beta
$ npm i @tanstack/svelte-query@rc
# or
$ pnpm add @tanstack/svelte-query@beta
$ pnpm add @tanstack/svelte-query@rc
# or
$ yarn add @tanstack/svelte-query@beta
$ yarn add @tanstack/svelte-query@rc
```

> Wanna give it a spin before you download? Try out the [basic](/query/v4/docs/svelte/examples/svelte/basic) example!
8 changes: 4 additions & 4 deletions docs/vue/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ title: Installation

You can install Vue Query via [NPM](https://npmjs.com).

> v5 is currently in beta. We don't anticipate any major API changes from here on out, but we do expect some minor changes and fixes. We encourage you to try it out and report any issues you find.
> v5 is currently available as a release-candidate. We don't anticipate any major API changes from here on out. We encourage you to try it out and report any issues you find.
### NPM

```bash
$ npm i @tanstack/vue-query@beta
$ npm i @tanstack/vue-query@rc
# or
$ pnpm add @tanstack/vue-query@beta
$ pnpm add @tanstack/vue-query@rc
# or
$ yarn add @tanstack/vue-query@beta
$ yarn add @tanstack/vue-query@rc
```

> Wanna give it a spin before you download? Try out the [basic](../examples/vue/basic) example!
Expand Down
2 changes: 1 addition & 1 deletion nx.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"affected": {
"defaultBase": "beta"
"defaultBase": "rc"
},
"tasksRunnerOptions": {
"default": {
Expand Down
2 changes: 1 addition & 1 deletion packages/react-query/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<img src="https://static.scarf.sh/a.png?x-pxid=be2d8a11-9712-4c1d-9963-580b2d4fb133" />

![TanStack Query Header](https://github.com/TanStack/query/raw/beta/media/repo-header.png)
![TanStack Query Header](https://github.com/TanStack/query/raw/rc/media/repo-header.png)

Hooks for fetching, caching and updating asynchronous data in React

Expand Down

0 comments on commit ce2c445

Please sign in to comment.