diff --git a/changelog.md b/changelog.md new file mode 100644 index 0000000..50e55d7 --- /dev/null +++ b/changelog.md @@ -0,0 +1,15 @@ +# Changelog + +## 2026-02-08 - 1.1.0 - feat(release) +add release configuration with npm registries and public access; add @ship.zone/szci placeholder + +- Added release.registries including https://verdaccio.lossless.digital and https://registry.npmjs.org +- Set release.accessLevel to 'public' in npmextra.json +- Added an empty @ship.zone/szci entry to npmextra.json + +## 2026-02-08 - 1.0.0 - initial release +Initial commit: repository and project scaffold. + +- Project initialized with the first commit. +- Added baseline project structure and configuration. +- Establishes repository for future development. \ No newline at end of file diff --git a/npmextra.json b/npmextra.json index ed854cb..4419e39 100644 --- a/npmextra.json +++ b/npmextra.json @@ -19,6 +19,14 @@ "unix socket", "cloud native" ] + }, + "release": { + "registries": [ + "https://verdaccio.lossless.digital", + "https://registry.npmjs.org" + ], + "accessLevel": "public" } - } -} + }, + "@ship.zone/szci": {} +} \ No newline at end of file diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 47e9b9b..c0f3cba 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -1,8 +1,8 @@ /** - * autocreated commitance data during CI/CD + * autocreated commitinfo by @push.rocks/commitinfo */ export const commitinfo = { name: '@push.rocks/smartvm', - version: '1.0.0', - description: 'A TypeScript module wrapping Amazon Firecracker VMM for managing lightweight microVMs', -}; + version: '1.1.0', + description: 'A TypeScript module wrapping Amazon Firecracker VMM for managing lightweight microVMs' +}