Skip to content

Commit edebe6e

Browse files
committed
release
1 parent df3c1f3 commit edebe6e

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,10 @@ npm -w @emdgroup/react-query run docs
3333

3434
This will update the `README.md` file with the latest documentation generated from the source code. Do not edit `README.md` directly.
3535

36+
To publish a new version, change into the package directory and run:
37+
38+
```bash
39+
# `minor` for new features, `patch` for bug fixes
40+
npm version minor
41+
npm publish --access public
42+
```

packages/auth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@emdgroup/react-auth",
3-
"version": "1.6.0",
3+
"version": "1.7.0",
44
"description": "React hooks implementing the Authorization Code Grant Flow with PKCE.",
55
"type": "module",
66
"main": "./dist/index.js",

packages/query/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,14 @@ A string to indicate whether the request will use CORS, or will be restricted to
290290

291291
___
292292

293+
### parseBody
294+
295+
`Optional` **parseBody**: `boolean`
296+
297+
Make an attempt to parse the body. If the content type of the response is application/json, body is a JSON object, text otherwise. Set to false if you need to read the response yourself. Defaults to true.
298+
299+
___
300+
293301
### queryParameters
294302

295303
`Optional` **queryParameters**: `URLSearchParams` \| `Record`<`string`, `string`\>

packages/query/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@emdgroup/react-query",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "React hooks for the fetch API with support for client-side caching",
55
"type": "module",
66
"main": "./dist/index.js",

0 commit comments

Comments
 (0)