diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b985ff6e..40ff6fe0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.1" + ".": "0.0.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..a47a5bae --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,16 @@ +# Changelog + +## [0.0.2](https://github.com/StackOneHQ/stackone-ai-node/compare/stackone-ai-node-v0.0.1...stackone-ai-node-v0.0.2) (2025-03-04) + + +### Features + +* init ([468ffea](https://github.com/StackOneHQ/stackone-ai-node/commit/468ffeae1f8ea9ec77637a1451e2040bcbd8adcf)) +* npm token ([#5](https://github.com/StackOneHQ/stackone-ai-node/issues/5)) ([1bb9095](https://github.com/StackOneHQ/stackone-ai-node/commit/1bb9095eb27a44888781fa892e68fb751cad2b20)) + + +### Bug Fixes + +* building docs ([#4](https://github.com/StackOneHQ/stackone-ai-node/issues/4)) ([c5dc1d2](https://github.com/StackOneHQ/stackone-ai-node/commit/c5dc1d248f9415f4599739410060dcd802872c1b)) +* docs action ([#2](https://github.com/StackOneHQ/stackone-ai-node/issues/2)) ([1717c31](https://github.com/StackOneHQ/stackone-ai-node/commit/1717c31a92c557aec023be7e89f19dab6ff10c32)) +* docs actions pt2 ([#3](https://github.com/StackOneHQ/stackone-ai-node/issues/3)) ([a9fbbc9](https://github.com/StackOneHQ/stackone-ai-node/commit/a9fbbc91446375b0916aacf5c13a9bdaec082680)) diff --git a/package.json b/package.json index 9a785a7b..44d41fa3 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,16 @@ { "name": "stackone-ai-node", - "version": "0.0.1", + "version": "0.0.2", "description": "Agents performing actions on your SaaS", "module": "dist/index.js", "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module", - "files": ["dist", "README.md", "LICENSE"], + "files": [ + "dist", + "README.md", + "LICENSE" + ], "scripts": { "build": "bun build ./src/index.ts --outdir ./dist --target node", "test": "bun test", @@ -47,7 +51,13 @@ "type": "git", "url": "git+https://github.com/stackone-ai/stackone-ai-node.git" }, - "keywords": ["stackone", "ai", "saas", "tools", "agents"], + "keywords": [ + "stackone", + "ai", + "saas", + "tools", + "agents" + ], "author": "StackOne", "license": "MIT", "bugs": { @@ -55,6 +65,9 @@ }, "homepage": "https://github.com/stackone-ai/stackone-ai-node#readme", "lint-staged": { - "*.{js,ts,jsx,tsx}": ["biome check --write", "biome format --write"] + "*.{js,ts,jsx,tsx}": [ + "biome check --write", + "biome format --write" + ] } }