diff --git a/changelog.md b/changelog.md index ad9a226..fb49f31 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2026-03-23 - 0.1.2 - fix(package) +rename package namespace from @push.rocks to @serve.zone + +- Updates the published package name to @serve.zone/containerarchive +- Aligns repository, bugs, homepage, README usage examples, and generated commit metadata with the new namespace + ## 2026-03-23 - 0.1.1 - fix(repo) no changes to commit diff --git a/npmextra.json b/npmextra.json index b4c2ebd..1496615 100644 --- a/npmextra.json +++ b/npmextra.json @@ -3,10 +3,10 @@ "projectType": "npm", "module": { "githost": "code.foss.global", - "gitscope": "push.rocks", + "gitscope": "serve.zone", "gitrepo": "containerarchive", "description": "content-addressed incremental backup engine with deduplication, encryption, and error correction", - "npmPackagename": "@push.rocks/containerarchive", + "npmPackagename": "@serve.zone/containerarchive", "license": "MIT", "keywords": [ "backup", @@ -35,6 +35,6 @@ ] }, "@git.zone/tsdoc": { - "legal": "\n## License and Legal Information\n\nThis module is part of the @push.rocks ecosystem, maintained by Task Venture Capital GmbH.\n\nLicensed under MIT. See LICENSE file for details.\n\nFor questions or commercial licensing, contact: hello@task.vc\n" + "legal": "\n## License and Legal Information\n\nThis module is part of the @serve.zone collection, maintained by Task Venture Capital GmbH.\n\nLicensed under MIT. See LICENSE file for details.\n\nFor questions or commercial licensing, contact: hello@task.vc\n" } } diff --git a/package.json b/package.json index 35187c8..a47bf89 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "@push.rocks/containerarchive", + "name": "@serve.zone/containerarchive", "version": "0.1.1", "private": false, "description": "content-addressed incremental backup engine with deduplication, encryption, and error correction", @@ -12,14 +12,14 @@ }, "repository": { "type": "git", - "url": "https://code.foss.global/push.rocks/containerarchive.git" + "url": "https://code.foss.global/serve.zone/containerarchive.git" }, "author": "Lossless GmbH", "license": "MIT", "bugs": { - "url": "https://code.foss.global/push.rocks/containerarchive/issues" + "url": "https://code.foss.global/serve.zone/containerarchive/issues" }, - "homepage": "https://code.foss.global/push.rocks/containerarchive", + "homepage": "https://code.foss.global/serve.zone/containerarchive", "dependencies": { "@push.rocks/lik": "^6.0.0", "@push.rocks/smartpromise": "^4.0.0", diff --git a/readme.md b/readme.md index b706b5e..00bf80a 100644 --- a/readme.md +++ b/readme.md @@ -1,4 +1,4 @@ -# @push.rocks/containerarchive +# @serve.zone/containerarchive A high-performance, content-addressed incremental backup engine with built-in deduplication, encryption, compression, and Reed-Solomon error correction — powered by a Rust core with a clean TypeScript API. @@ -9,7 +9,7 @@ For reporting bugs, issues, or security vulnerabilities, please visit [community ## Install ```bash -pnpm install @push.rocks/containerarchive +pnpm install @serve.zone/containerarchive ``` ## 🏗️ Architecture @@ -55,7 +55,7 @@ containerarchive uses a **hybrid Rust + TypeScript architecture**. The heavy lif ### Initialize a New Repository ```typescript -import { ContainerArchive } from '@push.rocks/containerarchive'; +import { ContainerArchive } from '@serve.zone/containerarchive'; // Unencrypted repository const repo = await ContainerArchive.init('/path/to/backup-repo'); diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 53dce16..a44a9e6 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -2,7 +2,7 @@ * autocreated commitinfo by @push.rocks/commitinfo */ export const commitinfo = { - name: '@push.rocks/containerarchive', - version: '0.1.1', + name: '@serve.zone/containerarchive', + version: '0.1.2', description: 'content-addressed incremental backup engine with deduplication, encryption, and error correction' }