diff --git a/.changeset/fix-npm-auth.md b/.changeset/fix-npm-auth.md deleted file mode 100644 index a0548fd..0000000 --- a/.changeset/fix-npm-auth.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@scope3/agentic-client": patch ---- - -Fix npm authentication in release workflow by manually configuring .npmrc file diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..ae64359 --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +//registry.npmjs.org/:_authToken=${NPM_TOKEN} diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f3fe2f..8ecd5c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # @scope3/agentic-client +## 1.0.2 + +### Patch Changes + +- [#10](https://github.com/scope3data/agentic-client/pull/10) [`e92b6d9`](https://github.com/scope3data/agentic-client/commit/e92b6d9fd097e15444aefa68ef406a2908ef2bb5) Thanks [@nastassiafulconis](https://github.com/nastassiafulconis)! - Fix npm authentication in release workflow by manually configuring .npmrc file + ## 1.0.1 ### Patch Changes diff --git a/package.json b/package.json index fb24bc6..0d01a39 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@scope3/agentic-client", - "version": "1.0.1", + "version": "1.0.2", "description": "TypeScript client for the Scope3 Agentic API with AdCP webhook support", "main": "dist/index.js", "types": "dist/index.d.ts",