diff --git a/.npmrc b/.npmrc deleted file mode 100644 index 5660f81..0000000 --- a/.npmrc +++ /dev/null @@ -1 +0,0 @@ -registry=https://registry.npmjs.org/ \ No newline at end of file diff --git a/changelog.md b/changelog.md index 8169fec..0501d01 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2025-08-24 - 2.0.1 - fix(npm) +Remove .npmrc to avoid committing npm registry configuration + +- Deleted .npmrc which contained a hardcoded registry (https://registry.npmjs.org/). +- Prevents accidental leakage of local npm configuration into the repository and avoids affecting CI/publish behavior. + ## 2025-08-24 - 2.0.0 - BREAKING CHANGE(core) Refactor core IPC: replace node-ipc with native transports and add IpcChannel / IpcServer / IpcClient with heartbeat, reconnection, request/response and pub/sub. Update tests and documentation. diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index f752210..50c9b68 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smartipc', - version: '2.0.0', + version: '2.0.1', description: 'A library for node inter process communication, providing an easy-to-use API for IPC.' }