diff --git a/.changeset/config.json b/.changeset/config.json index 12c7da56aad..bf795d01475 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -13,6 +13,7 @@ "@tanstack/angular-query-experimental", "@tanstack/angular-query-persist-client", "@tanstack/eslint-plugin-query", + "@tanstack/lit-query", "@tanstack/preact-query", "@tanstack/preact-query-devtools", "@tanstack/preact-query-persist-client", diff --git a/.changeset/lit-query-version-align.md b/.changeset/lit-query-version-align.md new file mode 100644 index 00000000000..9c829e9afde --- /dev/null +++ b/.changeset/lit-query-version-align.md @@ -0,0 +1,7 @@ +--- +'@tanstack/lit-query': patch +--- + +Realign `@tanstack/lit-query` to the main TanStack Query version line. + +The package is now part of the main fixed version group alongside `@tanstack/react-query`, `@tanstack/vue-query`, `@tanstack/solid-query`, etc., so its version tracks the rest of the core lineup. diff --git a/examples/lit/basic/package.json b/examples/lit/basic/package.json index 69cd3a8cbc4..a9befa82d7d 100644 --- a/examples/lit/basic/package.json +++ b/examples/lit/basic/package.json @@ -1,7 +1,6 @@ { "name": "@tanstack/query-example-lit-basic", "private": true, - "version": "0.0.2", "type": "module", "scripts": { "dev": "vite", @@ -9,8 +8,8 @@ "preview": "vite preview" }, "dependencies": { - "@tanstack/lit-query": "^0.2.0", - "@tanstack/query-core": "^5.99.0", + "@tanstack/lit-query": "^5.100.9", + "@tanstack/query-core": "^5.100.9", "lit": "^3.3.1" }, "devDependencies": { diff --git a/examples/lit/pagination/package.json b/examples/lit/pagination/package.json index 0b879877d4d..036f21d5590 100644 --- a/examples/lit/pagination/package.json +++ b/examples/lit/pagination/package.json @@ -1,7 +1,6 @@ { "name": "@tanstack/query-example-lit-pagination", "private": true, - "version": "0.0.2", "type": "module", "scripts": { "dev": "node ./scripts/dev.mjs", @@ -9,8 +8,8 @@ "preview": "vite preview" }, "dependencies": { - "@tanstack/lit-query": "^0.2.0", - "@tanstack/query-core": "^5.99.0", + "@tanstack/lit-query": "^5.100.9", + "@tanstack/query-core": "^5.100.9", "lit": "^3.3.1" }, "devDependencies": { diff --git a/examples/lit/ssr/package.json b/examples/lit/ssr/package.json index fe90e27b480..bc978b73da9 100644 --- a/examples/lit/ssr/package.json +++ b/examples/lit/ssr/package.json @@ -1,7 +1,6 @@ { "name": "@tanstack/query-example-lit-ssr", "private": true, - "version": "0.0.2", "type": "module", "scripts": { "dev": "node ./scripts/dev.mjs", @@ -9,8 +8,8 @@ }, "dependencies": { "@lit-labs/ssr": "^3.3.0", - "@tanstack/lit-query": "^0.2.0", - "@tanstack/query-core": "^5.99.0", + "@tanstack/lit-query": "^5.100.9", + "@tanstack/query-core": "^5.100.9", "lit": "^3.3.1" }, "devDependencies": { diff --git a/packages/lit-query/package.json b/packages/lit-query/package.json index f37494ed177..f42688f1f28 100644 --- a/packages/lit-query/package.json +++ b/packages/lit-query/package.json @@ -1,8 +1,19 @@ { "name": "@tanstack/lit-query", - "version": "0.2.0", - "description": "Lit adapter for TanStack Query Core", + "version": "5.100.9", + "description": "Controllers for managing, caching and syncing asynchronous and remote data in Lit", + "author": "tannerlinsley", "license": "MIT", + "repository": { + "type": "git", + "url": "git+https://github.com/TanStack/query.git", + "directory": "packages/lit-query" + }, + "homepage": "https://tanstack.com/query", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/tannerlinsley" + }, "type": "module", "main": "dist-cjs/index.js", "module": "dist/index.js",