From ebcd1d424e57993cfe21b3bb4830ccfd7d8c2910 Mon Sep 17 00:00:00 2001 From: Anthony Fu Date: Mon, 26 Aug 2024 20:00:29 +0200 Subject: [PATCH] chore: release v1.4.1 --- CHANGELOG.md | 10 ++++++++++ package.json | 2 +- packages/devtools-kit/package.json | 2 +- packages/devtools-ui-kit/package.json | 2 +- packages/devtools-wizard/package.json | 2 +- packages/devtools/package.json | 2 +- playgrounds/empty/package.json | 2 +- playgrounds/module-starter/client/package.json | 2 +- playgrounds/module-starter/package.json | 2 +- playgrounds/module-starter/playground/package.json | 2 +- playgrounds/tab-layers/package.json | 2 +- playgrounds/tab-pinia/package.json | 2 +- playgrounds/tab-seo/package.json | 2 +- playgrounds/tab-server-route/package.json | 2 +- playgrounds/tab-timeline/package.json | 2 +- 15 files changed, 24 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf749c10b..158e63024 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## [1.4.1](https://github.com/nuxt/devtools/compare/v1.4.0...v1.4.1) (2024-08-26) + + +### Bug Fixes + +* devtools-kit re-export ([d16cafc](https://github.com/nuxt/devtools/commit/d16cafc1b9b39bcf6099b066016079040f69e6ca)) +* **state-editor:** update deepSync function ([#713](https://github.com/nuxt/devtools/issues/713)) ([a7b9efb](https://github.com/nuxt/devtools/commit/a7b9efbd293484acdbf027193cf18515a0756992)) + + + # [1.4.0](https://github.com/nuxt/devtools/compare/v1.3.14...v1.4.0) (2024-08-26) diff --git a/package.json b/package.json index e11912c78..75f53b9ae 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@nuxt-devtools/monorepo", "type": "module", - "version": "1.4.0", + "version": "1.4.1", "private": true, "packageManager": "pnpm@9.9.0", "repository": { diff --git a/packages/devtools-kit/package.json b/packages/devtools-kit/package.json index 4e4f1c247..f4b8f39e1 100644 --- a/packages/devtools-kit/package.json +++ b/packages/devtools-kit/package.json @@ -1,7 +1,7 @@ { "name": "@nuxt/devtools-kit", "type": "module", - "version": "1.4.0", + "version": "1.4.1", "license": "MIT", "homepage": "https://devtools.nuxt.com/module/utils-kit", "repository": { diff --git a/packages/devtools-ui-kit/package.json b/packages/devtools-ui-kit/package.json index 369375cdc..647a35bb6 100644 --- a/packages/devtools-ui-kit/package.json +++ b/packages/devtools-ui-kit/package.json @@ -1,7 +1,7 @@ { "name": "@nuxt/devtools-ui-kit", "type": "module", - "version": "1.4.0", + "version": "1.4.1", "license": "MIT", "homepage": "https://devtools.nuxt.com/module/ui-kit", "repository": { diff --git a/packages/devtools-wizard/package.json b/packages/devtools-wizard/package.json index fb62bc261..ebce9ad1e 100644 --- a/packages/devtools-wizard/package.json +++ b/packages/devtools-wizard/package.json @@ -1,7 +1,7 @@ { "name": "@nuxt/devtools-wizard", "type": "module", - "version": "1.4.0", + "version": "1.4.1", "description": "CLI Wizard to toggle Nuxt DevTools", "license": "MIT", "homepage": "https://devtools.nuxt.com", diff --git a/packages/devtools/package.json b/packages/devtools/package.json index 7900ccbd2..b22ab13dd 100644 --- a/packages/devtools/package.json +++ b/packages/devtools/package.json @@ -1,7 +1,7 @@ { "name": "@nuxt/devtools", "type": "module", - "version": "1.4.0", + "version": "1.4.1", "license": "MIT", "homepage": "https://devtools.nuxt.com", "repository": { diff --git a/playgrounds/empty/package.json b/playgrounds/empty/package.json index 45067d83f..0abaefe12 100644 --- a/playgrounds/empty/package.json +++ b/playgrounds/empty/package.json @@ -1,6 +1,6 @@ { "name": "empty", - "version": "1.4.0", + "version": "1.4.1", "private": true, "main": "nuxt.config.ts", "files": [ diff --git a/playgrounds/module-starter/client/package.json b/playgrounds/module-starter/client/package.json index 32f45a46d..e25986f66 100644 --- a/playgrounds/module-starter/client/package.json +++ b/playgrounds/module-starter/client/package.json @@ -1,5 +1,5 @@ { "name": "my-module-client", - "version": "1.4.0", + "version": "1.4.1", "private": true } diff --git a/playgrounds/module-starter/package.json b/playgrounds/module-starter/package.json index 63027d4d5..ccfccb996 100644 --- a/playgrounds/module-starter/package.json +++ b/playgrounds/module-starter/package.json @@ -1,6 +1,6 @@ { "type": "module", - "version": "1.4.0", + "version": "1.4.1", "private": true, "exports": { ".": { diff --git a/playgrounds/module-starter/playground/package.json b/playgrounds/module-starter/playground/package.json index 55aed82e9..9b8952702 100644 --- a/playgrounds/module-starter/playground/package.json +++ b/playgrounds/module-starter/playground/package.json @@ -1,5 +1,5 @@ { "name": "my-module-playground", - "version": "1.4.0", + "version": "1.4.1", "private": true } diff --git a/playgrounds/tab-layers/package.json b/playgrounds/tab-layers/package.json index d45f4d1fb..7b819c082 100644 --- a/playgrounds/tab-layers/package.json +++ b/playgrounds/tab-layers/package.json @@ -1,5 +1,5 @@ { - "version": "1.4.0", + "version": "1.4.1", "private": true, "scripts": { "build": "nuxt build", diff --git a/playgrounds/tab-pinia/package.json b/playgrounds/tab-pinia/package.json index 3ce034ab5..590601c5d 100644 --- a/playgrounds/tab-pinia/package.json +++ b/playgrounds/tab-pinia/package.json @@ -1,5 +1,5 @@ { - "version": "1.4.0", + "version": "1.4.1", "private": true, "scripts": { "dev": "nuxi dev", diff --git a/playgrounds/tab-seo/package.json b/playgrounds/tab-seo/package.json index ceafd4bb5..7ed0e5e56 100644 --- a/playgrounds/tab-seo/package.json +++ b/playgrounds/tab-seo/package.json @@ -1,5 +1,5 @@ { - "version": "1.4.0", + "version": "1.4.1", "private": true, "scripts": { "build": "nuxt build", diff --git a/playgrounds/tab-server-route/package.json b/playgrounds/tab-server-route/package.json index ceafd4bb5..7ed0e5e56 100644 --- a/playgrounds/tab-server-route/package.json +++ b/playgrounds/tab-server-route/package.json @@ -1,5 +1,5 @@ { - "version": "1.4.0", + "version": "1.4.1", "private": true, "scripts": { "build": "nuxt build", diff --git a/playgrounds/tab-timeline/package.json b/playgrounds/tab-timeline/package.json index 0034ef5a0..40dd12c05 100644 --- a/playgrounds/tab-timeline/package.json +++ b/playgrounds/tab-timeline/package.json @@ -1,5 +1,5 @@ { - "version": "1.4.0", + "version": "1.4.1", "private": true, "scripts": { "build": "nuxt build",