From c5b3ec46d5435cd6d5727f37c323d1e213dc6772 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 12 Jul 2024 08:35:00 +0000 Subject: [PATCH] Version Packages --- .changeset/breezy-forks-check.md | 11 ------ .changeset/fast-stingrays-leave.md | 23 ----------- .changeset/slow-panthers-greet.md | 6 --- .../paraglide-js/CHANGELOG.md | 7 ++++ .../paraglide-js/package.json | 2 +- .../paraglide-next/CHANGELOG.md | 6 +++ .../paraglide-next/package.json | 2 +- inlang/source-code/ide-extension/CHANGELOG.md | 7 ++++ inlang/source-code/ide-extension/package.json | 2 +- .../paraglide/paraglide-astro/CHANGELOG.md | 6 +++ .../paraglide/paraglide-astro/package.json | 2 +- .../paraglide/paraglide-js/CHANGELOG.md | 6 +++ .../paraglide/paraglide-js/package.json | 2 +- .../paraglide/paraglide-next/CHANGELOG.md | 7 ++++ .../paraglide-next/examples/app/CHANGELOG.md | 6 +++ .../paraglide-next/examples/app/package.json | 2 +- .../examples/pages/CHANGELOG.md | 6 +++ .../examples/pages/package.json | 2 +- .../examples/turbo/CHANGELOG.md | 7 ++++ .../examples/turbo/package.json | 2 +- .../paraglide/paraglide-next/package.json | 2 +- .../paraglide/paraglide-rollup/CHANGELOG.md | 6 +++ .../paraglide/paraglide-rollup/package.json | 2 +- .../paraglide-sveltekit/CHANGELOG.md | 38 +++++++++++++++++++ .../paraglide-sveltekit/example/CHANGELOG.md | 8 ++++ .../paraglide-sveltekit/example/package.json | 2 +- .../paraglide-sveltekit/package.json | 2 +- .../paraglide/paraglide-unplugin/CHANGELOG.md | 7 ++++ .../paraglide/paraglide-unplugin/package.json | 2 +- .../paraglide/paraglide-vite/CHANGELOG.md | 6 +++ .../paraglide/paraglide-vite/package.json | 2 +- .../paraglide/paraglide-webpack/CHANGELOG.md | 6 +++ .../paraglide/paraglide-webpack/package.json | 2 +- .../recommend-ninja/CHANGELOG.md | 6 +++ .../recommend-ninja/package.json | 2 +- 35 files changed, 151 insertions(+), 56 deletions(-) delete mode 100644 .changeset/breezy-forks-check.md delete mode 100644 .changeset/fast-stingrays-leave.md delete mode 100644 .changeset/slow-panthers-greet.md diff --git a/.changeset/breezy-forks-check.md b/.changeset/breezy-forks-check.md deleted file mode 100644 index fced09cdc9..0000000000 --- a/.changeset/breezy-forks-check.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@inlang/paraglide-sveltekit": patch ---- - -fix: Preserve query parameters when redirecting ([inlang-paraglide-js#168](https://github.com/opral/inlang-paraglide-js/issues/168)) - -`i18n.handle` redirects requests if the pathname does not fit the detected language. Previously this would remove any query parameters from the URL. This is no longer the case. - -```ts -redirect(303, "/login?from=/home") // will be redirected to //login?from=/home -``` \ No newline at end of file diff --git a/.changeset/fast-stingrays-leave.md b/.changeset/fast-stingrays-leave.md deleted file mode 100644 index c21428ce78..0000000000 --- a/.changeset/fast-stingrays-leave.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -"@inlang/paraglide-sveltekit": minor ---- - -Adds a `disableAsyncLocalStorage` option to `i18n.handle`. This allows you to opt out of using the experimental `AsyncLocalStorage` API. - -**Warning** -Disabling `AsyncLocalStorage` removes the protection against concurrent requests overriding each other's language state. - -Only opt out if `AsyncLocalStorage` if you are certain your environment does not handle concurrent requests in the same process. For example in Vercel Edge functions or Cloudflare Workers. - -In environments where only one request is processed in a given process disabling `AsyncLocalStorage` can yield performance gains. - -**Example** -```ts -// src/hooks.server.js -import { i18n } from "$lib/i18n" - -export const handle = i18n.handle({ - disableAsyncLocalStorage: true // @default = false -}) - -``` \ No newline at end of file diff --git a/.changeset/slow-panthers-greet.md b/.changeset/slow-panthers-greet.md deleted file mode 100644 index c2ae1145c1..0000000000 --- a/.changeset/slow-panthers-greet.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@inlang/recommend-ninja": patch -"@inlang/paraglide-js": patch ---- - -Fix Ninja recommendation and adoption if working directory is not the repo root diff --git a/inlang/source-code/end-to-end-tests/paraglide-js/CHANGELOG.md b/inlang/source-code/end-to-end-tests/paraglide-js/CHANGELOG.md index 3aeb425216..7339ab8ae4 100644 --- a/inlang/source-code/end-to-end-tests/paraglide-js/CHANGELOG.md +++ b/inlang/source-code/end-to-end-tests/paraglide-js/CHANGELOG.md @@ -1,5 +1,12 @@ # @inlang/paraglide-js-e2e +## 0.0.41 + +### Patch Changes + +- Updated dependencies [59c8b11] + - @inlang/paraglide-js@1.11.2 + ## 0.0.40 ### Patch Changes diff --git a/inlang/source-code/end-to-end-tests/paraglide-js/package.json b/inlang/source-code/end-to-end-tests/paraglide-js/package.json index 4af7c4c62e..d9d4c6f81b 100644 --- a/inlang/source-code/end-to-end-tests/paraglide-js/package.json +++ b/inlang/source-code/end-to-end-tests/paraglide-js/package.json @@ -1,6 +1,6 @@ { "name": "@inlang/paraglide-js-e2e", - "version": "0.0.40", + "version": "0.0.41", "private": true, "type": "module", "scripts": { diff --git a/inlang/source-code/end-to-end-tests/paraglide-next/CHANGELOG.md b/inlang/source-code/end-to-end-tests/paraglide-next/CHANGELOG.md index 4b4b13db63..2bdc748ad5 100644 --- a/inlang/source-code/end-to-end-tests/paraglide-next/CHANGELOG.md +++ b/inlang/source-code/end-to-end-tests/paraglide-next/CHANGELOG.md @@ -1,5 +1,11 @@ # @inlang/paraglide-next-e2e +## 0.0.26 + +### Patch Changes + +- @inlang/paraglide-next@0.5.2 + ## 0.0.25 ### Patch Changes diff --git a/inlang/source-code/end-to-end-tests/paraglide-next/package.json b/inlang/source-code/end-to-end-tests/paraglide-next/package.json index 49b672886f..ce8fc333c0 100644 --- a/inlang/source-code/end-to-end-tests/paraglide-next/package.json +++ b/inlang/source-code/end-to-end-tests/paraglide-next/package.json @@ -1,6 +1,6 @@ { "name": "@inlang/paraglide-next-e2e", - "version": "0.0.25", + "version": "0.0.26", "private": true, "type": "module", "scripts": { diff --git a/inlang/source-code/ide-extension/CHANGELOG.md b/inlang/source-code/ide-extension/CHANGELOG.md index dcde699fe1..6dc0d8eb1a 100644 --- a/inlang/source-code/ide-extension/CHANGELOG.md +++ b/inlang/source-code/ide-extension/CHANGELOG.md @@ -1,5 +1,12 @@ # inlang-vs-code-extension +## 1.48.3 + +### Patch Changes + +- Updated dependencies [59c8b11] + - @inlang/recommend-ninja@0.1.1 + ## 1.48.2 ### Patch Changes diff --git a/inlang/source-code/ide-extension/package.json b/inlang/source-code/ide-extension/package.json index 0c69368708..eb8165163b 100644 --- a/inlang/source-code/ide-extension/package.json +++ b/inlang/source-code/ide-extension/package.json @@ -10,7 +10,7 @@ "url": "https://github.com/opral/monorepo.git" }, "icon": "assets/sherlock-logo.png", - "version": "1.48.2", + "version": "1.48.3", "engines": { "vscode": "^1.84.2" }, diff --git a/inlang/source-code/paraglide/paraglide-astro/CHANGELOG.md b/inlang/source-code/paraglide/paraglide-astro/CHANGELOG.md index 3b3e45e97d..9893c8beeb 100644 --- a/inlang/source-code/paraglide/paraglide-astro/CHANGELOG.md +++ b/inlang/source-code/paraglide/paraglide-astro/CHANGELOG.md @@ -1,5 +1,11 @@ # @inlang/paraglide-astro +## 0.2.2 + +### Patch Changes + +- @inlang/paraglide-vite@1.2.74 + ## 0.2.1 ### Patch Changes diff --git a/inlang/source-code/paraglide/paraglide-astro/package.json b/inlang/source-code/paraglide/paraglide-astro/package.json index 91ec47fdb4..712a507106 100644 --- a/inlang/source-code/paraglide/paraglide-astro/package.json +++ b/inlang/source-code/paraglide/paraglide-astro/package.json @@ -1,6 +1,6 @@ { "name": "@inlang/paraglide-astro", - "version": "0.2.1", + "version": "0.2.2", "author": "inlang (https://inlang.com/)", "description": "A fully type-safe i18n library specifically designed for partial hydration patterns like Astro's islands.", "homepage": "https://inlang.com/m/iljlwzfs/paraglide-astro-i18n", diff --git a/inlang/source-code/paraglide/paraglide-js/CHANGELOG.md b/inlang/source-code/paraglide/paraglide-js/CHANGELOG.md index d166a7c9a3..72491feb7f 100644 --- a/inlang/source-code/paraglide/paraglide-js/CHANGELOG.md +++ b/inlang/source-code/paraglide/paraglide-js/CHANGELOG.md @@ -1,5 +1,11 @@ # @inlang/paraglide-js +## 1.11.2 + +### Patch Changes + +- 59c8b11: Fix Ninja recommendation and adoption if working directory is not the repo root + ## 1.11.1 ### Patch Changes diff --git a/inlang/source-code/paraglide/paraglide-js/package.json b/inlang/source-code/paraglide/paraglide-js/package.json index 7efcc01010..e0ffd7e2b3 100644 --- a/inlang/source-code/paraglide/paraglide-js/package.json +++ b/inlang/source-code/paraglide/paraglide-js/package.json @@ -1,7 +1,7 @@ { "name": "@inlang/paraglide-js", "type": "module", - "version": "1.11.1", + "version": "1.11.2", "license": "Apache-2.0", "publishConfig": { "access": "public" diff --git a/inlang/source-code/paraglide/paraglide-next/CHANGELOG.md b/inlang/source-code/paraglide/paraglide-next/CHANGELOG.md index 2e6be89b7e..0111e42d3e 100644 --- a/inlang/source-code/paraglide/paraglide-next/CHANGELOG.md +++ b/inlang/source-code/paraglide/paraglide-next/CHANGELOG.md @@ -1,5 +1,12 @@ # @inlang/paraglide-next +## 0.5.2 + +### Patch Changes + +- Updated dependencies [59c8b11] + - @inlang/paraglide-js@1.11.2 + ## 0.5.1 ### Patch Changes diff --git a/inlang/source-code/paraglide/paraglide-next/examples/app/CHANGELOG.md b/inlang/source-code/paraglide/paraglide-next/examples/app/CHANGELOG.md index 3723e92b42..203f044e69 100644 --- a/inlang/source-code/paraglide/paraglide-next/examples/app/CHANGELOG.md +++ b/inlang/source-code/paraglide/paraglide-next/examples/app/CHANGELOG.md @@ -1,5 +1,11 @@ # @inlang/paraglide-next-example-app +## 0.2.27 + +### Patch Changes + +- @inlang/paraglide-next@0.5.2 + ## 0.2.26 ### Patch Changes diff --git a/inlang/source-code/paraglide/paraglide-next/examples/app/package.json b/inlang/source-code/paraglide/paraglide-next/examples/app/package.json index ff380834bb..421125fd41 100644 --- a/inlang/source-code/paraglide/paraglide-next/examples/app/package.json +++ b/inlang/source-code/paraglide/paraglide-next/examples/app/package.json @@ -1,6 +1,6 @@ { "name": "@inlang/paraglide-next-example-app", - "version": "0.2.26", + "version": "0.2.27", "private": true, "scripts": { "_dev": "next dev", diff --git a/inlang/source-code/paraglide/paraglide-next/examples/pages/CHANGELOG.md b/inlang/source-code/paraglide/paraglide-next/examples/pages/CHANGELOG.md index 473d4b204e..5758e356d8 100644 --- a/inlang/source-code/paraglide/paraglide-next/examples/pages/CHANGELOG.md +++ b/inlang/source-code/paraglide/paraglide-next/examples/pages/CHANGELOG.md @@ -1,5 +1,11 @@ # @inlang/paraglide-next-example-pages +## 0.2.29 + +### Patch Changes + +- @inlang/paraglide-next@0.5.2 + ## 0.2.28 ### Patch Changes diff --git a/inlang/source-code/paraglide/paraglide-next/examples/pages/package.json b/inlang/source-code/paraglide/paraglide-next/examples/pages/package.json index a5d0a7a162..0e7085dcb7 100644 --- a/inlang/source-code/paraglide/paraglide-next/examples/pages/package.json +++ b/inlang/source-code/paraglide/paraglide-next/examples/pages/package.json @@ -1,6 +1,6 @@ { "name": "@inlang/paraglide-next-example-pages", - "version": "0.2.28", + "version": "0.2.29", "private": true, "sideEffects": false, "scripts": { diff --git a/inlang/source-code/paraglide/paraglide-next/examples/turbo/CHANGELOG.md b/inlang/source-code/paraglide/paraglide-next/examples/turbo/CHANGELOG.md index 2cfa5f68db..abef7af3d6 100644 --- a/inlang/source-code/paraglide/paraglide-next/examples/turbo/CHANGELOG.md +++ b/inlang/source-code/paraglide/paraglide-next/examples/turbo/CHANGELOG.md @@ -1,5 +1,12 @@ # @inlang/paraglide-next-example-turbo +## 0.1.23 + +### Patch Changes + +- Updated dependencies [59c8b11] + - @inlang/paraglide-js@1.11.2 + ## 0.1.22 ### Patch Changes diff --git a/inlang/source-code/paraglide/paraglide-next/examples/turbo/package.json b/inlang/source-code/paraglide/paraglide-next/examples/turbo/package.json index a132218f75..9ae72f4612 100644 --- a/inlang/source-code/paraglide/paraglide-next/examples/turbo/package.json +++ b/inlang/source-code/paraglide/paraglide-next/examples/turbo/package.json @@ -1,6 +1,6 @@ { "name": "@inlang/paraglide-next-example-turbo", - "version": "0.1.22", + "version": "0.1.23", "private": true, "scripts": { "_dev": "next dev --turbo", diff --git a/inlang/source-code/paraglide/paraglide-next/package.json b/inlang/source-code/paraglide/paraglide-next/package.json index 6f76cc2e30..0ccb13a135 100644 --- a/inlang/source-code/paraglide/paraglide-next/package.json +++ b/inlang/source-code/paraglide/paraglide-next/package.json @@ -1,7 +1,7 @@ { "name": "@inlang/paraglide-next", "description": "The easiest way to do i18n in NextJS", - "version": "0.5.1", + "version": "0.5.2", "publishConfig": { "access": "public" }, diff --git a/inlang/source-code/paraglide/paraglide-rollup/CHANGELOG.md b/inlang/source-code/paraglide/paraglide-rollup/CHANGELOG.md index 53612004f2..b39dd008e2 100644 --- a/inlang/source-code/paraglide/paraglide-rollup/CHANGELOG.md +++ b/inlang/source-code/paraglide/paraglide-rollup/CHANGELOG.md @@ -1,5 +1,11 @@ # @inlang/paraglide-rollup +## 1.0.80 + +### Patch Changes + +- @inlang/paraglide-unplugin@1.8.5 + ## 1.0.79 ### Patch Changes diff --git a/inlang/source-code/paraglide/paraglide-rollup/package.json b/inlang/source-code/paraglide/paraglide-rollup/package.json index ad698a581e..7aac419946 100644 --- a/inlang/source-code/paraglide/paraglide-rollup/package.json +++ b/inlang/source-code/paraglide/paraglide-rollup/package.json @@ -1,6 +1,6 @@ { "name": "@inlang/paraglide-rollup", - "version": "1.0.79", + "version": "1.0.80", "description": "Rollup Plugin for running the Paraglide i18n compiler", "license": "Apache-2.0", "type": "module", diff --git a/inlang/source-code/paraglide/paraglide-sveltekit/CHANGELOG.md b/inlang/source-code/paraglide/paraglide-sveltekit/CHANGELOG.md index 22e8387715..e80decf084 100644 --- a/inlang/source-code/paraglide/paraglide-sveltekit/CHANGELOG.md +++ b/inlang/source-code/paraglide/paraglide-sveltekit/CHANGELOG.md @@ -1,5 +1,43 @@ # @inlang/paraglide-sveltekit +## 0.11.0 + +### Minor Changes + +- 82581f7: Adds a `disableAsyncLocalStorage` option to `i18n.handle`. This allows you to opt out of using the experimental `AsyncLocalStorage` API. + + **Warning** + Disabling `AsyncLocalStorage` removes the protection against concurrent requests overriding each other's language state. + + Only opt out if `AsyncLocalStorage` if you are certain your environment does not handle concurrent requests in the same process. For example in Vercel Edge functions or Cloudflare Workers. + + In environments where only one request is processed in a given process disabling `AsyncLocalStorage` can yield performance gains. + + **Example** + + ```ts + // src/hooks.server.js + import { i18n } from "$lib/i18n" + + export const handle = i18n.handle({ + disableAsyncLocalStorage: true, // @default = false + }) + ``` + +### Patch Changes + +- 72b2f34: fix: Preserve query parameters when redirecting ([inlang-paraglide-js#168](https://github.com/opral/inlang-paraglide-js/issues/168)) + + `i18n.handle` redirects requests if the pathname does not fit the detected language. Previously this would remove any query parameters from the URL. This is no longer the case. + + ```ts + redirect(303, "/login?from=/home") // will be redirected to //login?from=/home + ``` + +- Updated dependencies [59c8b11] + - @inlang/paraglide-js@1.11.2 + - @inlang/paraglide-vite@1.2.74 + ## 0.10.10 ### Patch Changes diff --git a/inlang/source-code/paraglide/paraglide-sveltekit/example/CHANGELOG.md b/inlang/source-code/paraglide/paraglide-sveltekit/example/CHANGELOG.md index 8ab3c5a703..4af26beed2 100644 --- a/inlang/source-code/paraglide/paraglide-sveltekit/example/CHANGELOG.md +++ b/inlang/source-code/paraglide/paraglide-sveltekit/example/CHANGELOG.md @@ -1,5 +1,13 @@ # @inlang/paraglide-sveltekit-example +## 0.1.71 + +### Patch Changes + +- Updated dependencies [72b2f34] +- Updated dependencies [82581f7] + - @inlang/paraglide-sveltekit@0.11.0 + ## 0.1.70 ### Patch Changes diff --git a/inlang/source-code/paraglide/paraglide-sveltekit/example/package.json b/inlang/source-code/paraglide/paraglide-sveltekit/example/package.json index a3dfdbbece..e9b565d135 100644 --- a/inlang/source-code/paraglide/paraglide-sveltekit/example/package.json +++ b/inlang/source-code/paraglide/paraglide-sveltekit/example/package.json @@ -1,6 +1,6 @@ { "name": "@inlang/paraglide-sveltekit-example", - "version": "0.1.70", + "version": "0.1.71", "private": true, "scripts": { "_dev": "vite dev", diff --git a/inlang/source-code/paraglide/paraglide-sveltekit/package.json b/inlang/source-code/paraglide/paraglide-sveltekit/package.json index 5511aec35a..540fc18640 100644 --- a/inlang/source-code/paraglide/paraglide-sveltekit/package.json +++ b/inlang/source-code/paraglide/paraglide-sveltekit/package.json @@ -1,6 +1,6 @@ { "name": "@inlang/paraglide-sveltekit", - "version": "0.10.10", + "version": "0.11.0", "type": "module", "main": "./dist/runtime/index.js", "types": "./dist/runtime/index.d.ts", diff --git a/inlang/source-code/paraglide/paraglide-unplugin/CHANGELOG.md b/inlang/source-code/paraglide/paraglide-unplugin/CHANGELOG.md index 2352b99cd4..20c27bfc54 100644 --- a/inlang/source-code/paraglide/paraglide-unplugin/CHANGELOG.md +++ b/inlang/source-code/paraglide/paraglide-unplugin/CHANGELOG.md @@ -1,5 +1,12 @@ # @inlang/paraglide-unplugin +## 1.8.5 + +### Patch Changes + +- Updated dependencies [59c8b11] + - @inlang/paraglide-js@1.11.2 + ## 1.8.4 ### Patch Changes diff --git a/inlang/source-code/paraglide/paraglide-unplugin/package.json b/inlang/source-code/paraglide/paraglide-unplugin/package.json index 2f63cc9178..5cf6ec685e 100644 --- a/inlang/source-code/paraglide/paraglide-unplugin/package.json +++ b/inlang/source-code/paraglide/paraglide-unplugin/package.json @@ -1,6 +1,6 @@ { "name": "@inlang/paraglide-unplugin", - "version": "1.8.4", + "version": "1.8.5", "description": "Unplugin Plugin for runnning the Paraglide compiler.", "license": "Apache-2.0", "type": "module", diff --git a/inlang/source-code/paraglide/paraglide-vite/CHANGELOG.md b/inlang/source-code/paraglide/paraglide-vite/CHANGELOG.md index 8ba355185d..73e9e21127 100644 --- a/inlang/source-code/paraglide/paraglide-vite/CHANGELOG.md +++ b/inlang/source-code/paraglide/paraglide-vite/CHANGELOG.md @@ -1,5 +1,11 @@ # @inlang/paraglide-vite +## 1.2.74 + +### Patch Changes + +- @inlang/paraglide-unplugin@1.8.5 + ## 1.2.73 ### Patch Changes diff --git a/inlang/source-code/paraglide/paraglide-vite/package.json b/inlang/source-code/paraglide/paraglide-vite/package.json index bf7ac47022..feabd48f32 100644 --- a/inlang/source-code/paraglide/paraglide-vite/package.json +++ b/inlang/source-code/paraglide/paraglide-vite/package.json @@ -1,6 +1,6 @@ { "name": "@inlang/paraglide-vite", - "version": "1.2.73", + "version": "1.2.74", "description": "Vite plugin for running the Paraglide i18n compiler", "license": "Apache-2.0", "type": "module", diff --git a/inlang/source-code/paraglide/paraglide-webpack/CHANGELOG.md b/inlang/source-code/paraglide/paraglide-webpack/CHANGELOG.md index 0a975675b2..8b29d6745c 100644 --- a/inlang/source-code/paraglide/paraglide-webpack/CHANGELOG.md +++ b/inlang/source-code/paraglide/paraglide-webpack/CHANGELOG.md @@ -1,5 +1,11 @@ # @inlang/paraglide-webpack +## 1.0.80 + +### Patch Changes + +- @inlang/paraglide-unplugin@1.8.5 + ## 1.0.79 ### Patch Changes diff --git a/inlang/source-code/paraglide/paraglide-webpack/package.json b/inlang/source-code/paraglide/paraglide-webpack/package.json index ea63ed6e71..d079c119eb 100644 --- a/inlang/source-code/paraglide/paraglide-webpack/package.json +++ b/inlang/source-code/paraglide/paraglide-webpack/package.json @@ -1,6 +1,6 @@ { "name": "@inlang/paraglide-webpack", - "version": "1.0.79", + "version": "1.0.80", "description": "Webpack plugin for running the Paraglide i18n compiler", "license": "Apache-2.0", "type": "module", diff --git a/inlang/source-code/recommendations/recommend-ninja/CHANGELOG.md b/inlang/source-code/recommendations/recommend-ninja/CHANGELOG.md index 6ce9e294a8..58a686f1eb 100644 --- a/inlang/source-code/recommendations/recommend-ninja/CHANGELOG.md +++ b/inlang/source-code/recommendations/recommend-ninja/CHANGELOG.md @@ -1,5 +1,11 @@ # @inlang/recommend-ninja +## 0.1.1 + +### Patch Changes + +- 59c8b11: Fix Ninja recommendation and adoption if working directory is not the repo root + ## 0.1.0 ### Minor Changes diff --git a/inlang/source-code/recommendations/recommend-ninja/package.json b/inlang/source-code/recommendations/recommend-ninja/package.json index 4c9c3ecb9a..7f788c5166 100644 --- a/inlang/source-code/recommendations/recommend-ninja/package.json +++ b/inlang/source-code/recommendations/recommend-ninja/package.json @@ -1,7 +1,7 @@ { "name": "@inlang/recommend-ninja", "description": "A package to recommend Ninja", - "version": "0.1.0", + "version": "0.1.1", "type": "module", "publishConfig": { "access": "public"