diff --git a/changelog.md b/changelog.md index 754c529..5ab0b5a 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2025-10-27 - 1.3.1 - fix(publish) +Switch publish registry to internal Verdaccio instance and add local CI settings + +- Update package.json publishConfig.registry from https://registry.npmjs.org/ to https://verdaccio.lossless.digital/ to publish packages to the internal Verdaccio registry. +- Add .claude/settings.local.json to include local CI/dev settings (local configuration only). + ## 2025-10-27 - 1.3.0 - feat(cli) Add automatic update command and documentation updates diff --git a/package.json b/package.json index 0026ace..985e6aa 100644 --- a/package.json +++ b/package.json @@ -55,7 +55,7 @@ ], "publishConfig": { "access": "public", - "registry": "https://registry.npmjs.org/" + "registry": "https://verdaccio.lossless.digital/" }, "packageManager": "pnpm@10.18.1+sha512.77a884a165cbba2d8d1c19e3b4880eee6d2fcabd0d879121e282196b80042351d5eb3ca0935fa599da1dc51265cc68816ad2bddd2a2de5ea9fdf92adbec7cd34" } diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 85b0a43..ca13a51 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/moxytool', - version: '1.3.0', + version: '1.3.1', description: 'Proxmox administration tool for vGPU setup, VM management, and cluster configuration' }