From c1800923b6867ceedbe086dbb2ad07bd8cc667a3 Mon Sep 17 00:00:00 2001 From: demirjs <41634504+hsndmr@users.noreply.github.com> Date: Sun, 22 Jun 2025 00:42:52 +0300 Subject: [PATCH 1/2] Update version in package.json to 2.0.1 for reactotron-react-query --- packages/reactotron-react-query/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/reactotron-react-query/package.json b/packages/reactotron-react-query/package.json index c8736c6..fd2a136 100644 --- a/packages/reactotron-react-query/package.json +++ b/packages/reactotron-react-query/package.json @@ -1,6 +1,6 @@ { "name": "reactotron-react-query", - "version": "2.0.0", + "version": "2.0.1", "description": "Reactotron plugin for React Query", "main": "dist/src/index.js", "types": "dist/types/index.d.ts", From d14f6e7f7f06a771341d66f09392455347054c49 Mon Sep 17 00:00:00 2001 From: demirjs <41634504+hsndmr@users.noreply.github.com> Date: Sun, 22 Jun 2025 00:43:11 +0300 Subject: [PATCH 2/2] Update publish command in GitHub Actions to include --no-git-checks for reactotron-react-query --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index eddc302..c166684 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -38,6 +38,6 @@ jobs: run: pnpm --filter reactotron-react-query build - name: Publish package - run: pnpm --filter reactotron-react-query publish --access public + run: pnpm --filter reactotron-react-query publish --access public --no-git-checks env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}