Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
monken committed Oct 11, 2023
1 parent df3c1f3 commit edebe6e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,10 @@ npm -w @emdgroup/react-query run docs

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

To publish a new version, change into the package directory and run:

```bash
# `minor` for new features, `patch` for bug fixes
npm version minor
npm publish --access public
```
2 changes: 1 addition & 1 deletion packages/auth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@emdgroup/react-auth",
"version": "1.6.0",
"version": "1.7.0",
"description": "React hooks implementing the Authorization Code Grant Flow with PKCE.",
"type": "module",
"main": "./dist/index.js",
Expand Down
8 changes: 8 additions & 0 deletions packages/query/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,14 @@ A string to indicate whether the request will use CORS, or will be restricted to

___

### parseBody

`Optional` **parseBody**: `boolean`

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.

___

### queryParameters

`Optional` **queryParameters**: `URLSearchParams` \| `Record`<`string`, `string`\>
Expand Down
2 changes: 1 addition & 1 deletion packages/query/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@emdgroup/react-query",
"version": "1.1.0",
"version": "1.2.0",
"description": "React hooks for the fetch API with support for client-side caching",
"type": "module",
"main": "./dist/index.js",
Expand Down

0 comments on commit edebe6e

Please sign in to comment.