Skip to content

Commit 672b238

Browse files
ci: Version Packages (#41)
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## @tanstack/devtools@0.4.0 ### Minor Changes - Change the TanStackDevtools export ([#40](#40)) ## @tanstack/react-devtools@0.4.0 ### Minor Changes - Change the TanStackDevtools export ([#40](#40)) ### Patch Changes - Updated dependencies \[[`94731d3`](94731d3)]: - @tanstack/devtools@0.4.0 ## @tanstack/solid-devtools@0.4.0 ### Minor Changes - Change the TanStackDevtools export ([#40](#40)) ### Patch Changes - Updated dependencies \[[`94731d3`](94731d3)]: - @tanstack/devtools@0.4.0 Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 94731d3 commit 672b238

File tree

14 files changed

+45
-24
lines changed

14 files changed

+45
-24
lines changed

.changeset/all-olives-accept.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

examples/react/basic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"dependencies": {
1212
"@tanstack/devtools-event-client": "^0.2.1",
13-
"@tanstack/react-devtools": "^0.3.1",
13+
"@tanstack/react-devtools": "^0.4.0",
1414
"@tanstack/react-query": "^5.83.0",
1515
"@tanstack/react-query-devtools": "^5.83.0",
1616
"@tanstack/react-router": "^1.130.2",

examples/react/custom-devtools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"dependencies": {
1212
"@tanstack/devtools-event-client": "^0.2.1",
13-
"@tanstack/react-devtools": "^0.3.1",
13+
"@tanstack/react-devtools": "^0.4.0",
1414
"react": "^19.1.0",
1515
"react-dom": "^19.1.0"
1616
},

examples/react/start/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"@tailwindcss/vite": "^4.0.6",
2020
"@tanstack/devtools-event-bus": "^0.2.1",
2121
"@tanstack/devtools-event-client": "^0.2.1",
22-
"@tanstack/react-devtools": "^0.3.1",
22+
"@tanstack/react-devtools": "^0.4.0",
2323
"@tanstack/react-query": "^5.83.0",
2424
"@tanstack/react-query-devtools": "^5.83.0",
2525
"@tanstack/react-router": "^1.130.2",
@@ -35,7 +35,7 @@
3535
"zod": "^4.0.14"
3636
},
3737
"devDependencies": {
38-
"@tanstack/devtools": "^0.3.2",
38+
"@tanstack/devtools": "^0.4.0",
3939
"@testing-library/dom": "^10.4.0",
4040
"@testing-library/react": "^16.2.0",
4141
"@types/react": "^19.1.2",

examples/react/time-travel/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"dependencies": {
1212
"@tanstack/devtools-event-client": "workspace:^",
13-
"@tanstack/react-devtools": "^0.3.1",
13+
"@tanstack/react-devtools": "^0.4.0",
1414
"@tanstack/react-query": "^5.83.0",
1515
"@tanstack/react-query-devtools": "^5.83.0",
1616
"@tanstack/react-router": "^1.130.2",

examples/solid/basic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"test:types": "tsc"
1010
},
1111
"dependencies": {
12-
"@tanstack/solid-devtools": "^0.3.2",
12+
"@tanstack/solid-devtools": "^0.4.0",
1313
"@tanstack/solid-query": "^5.83.0",
1414
"@tanstack/solid-query-devtools": "^5.83.0",
1515
"@tanstack/solid-router": "^1.129.8",

examples/solid/start/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"dependencies": {
1010
"@solidjs/start": "^1.1.0",
11-
"@tanstack/solid-devtools": "^0.3.2",
11+
"@tanstack/solid-devtools": "^0.4.0",
1212
"solid-js": "^1.9.7",
1313
"vinxi": "^0.5.7"
1414
},

packages/devtools/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @tanstack/devtools
22

3+
## 0.4.0
4+
5+
### Minor Changes
6+
7+
- Change the TanStackDevtools export ([#40](https://github.com/TanStack/devtools/pull/40))
8+
39
## 0.3.2
410

511
### Patch Changes

packages/devtools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tanstack/devtools",
3-
"version": "0.3.2",
3+
"version": "0.4.0",
44
"description": "TanStack Devtools is a set of tools for building advanced devtools for your application.",
55
"author": "Tanner Linsley",
66
"license": "MIT",

packages/react-devtools/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @tanstack/react-devtools
22

3+
## 0.4.0
4+
5+
### Minor Changes
6+
7+
- Change the TanStackDevtools export ([#40](https://github.com/TanStack/devtools/pull/40))
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [[`94731d3`](https://github.com/TanStack/devtools/commit/94731d397436d10d43d874f3aff5bf549db32e06)]:
12+
- @tanstack/devtools@0.4.0
13+
314
## 0.3.1
415

516
### Patch Changes

0 commit comments

Comments
 (0)