Skip to content

Commit a26ca06

Browse files
release: 0.1.0-alpha.23
1 parent f2a4d97 commit a26ca06

File tree

6 files changed

+18
-5
lines changed

6 files changed

+18
-5
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.0-alpha.22"
2+
".": "0.1.0-alpha.23"
33
}

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## 0.1.0-alpha.23 (2026-02-03)
4+
5+
Full Changelog: [v0.1.0-alpha.22...v0.1.0-alpha.23](https://github.com/Scan-Documents/node-sdk/compare/v0.1.0-alpha.22...v0.1.0-alpha.23)
6+
7+
### Bug Fixes
8+
9+
* **client:** avoid memory leak with abort signals ([8270f0d](https://github.com/Scan-Documents/node-sdk/commit/8270f0d224ff8d6c3b396e994a9af0c0e4278ebd))
10+
11+
12+
### Chores
13+
14+
* **mcp:** up tsconfig lib version to es2022 ([dbfab5b](https://github.com/Scan-Documents/node-sdk/commit/dbfab5b030098d589a9e93c81e0031dc82add4a5))
15+
316
## 0.1.0-alpha.22 (2026-01-29)
417

518
Full Changelog: [v0.1.0-alpha.21...v0.1.0-alpha.22](https://github.com/Scan-Documents/node-sdk/compare/v0.1.0-alpha.21...v0.1.0-alpha.22)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "scan-documents",
3-
"version": "0.1.0-alpha.22",
3+
"version": "0.1.0-alpha.23",
44
"description": "The official TypeScript library for the Scan Documents API",
55
"author": "Scan Documents <support@scan-documents.com>",
66
"types": "dist/index.d.ts",

packages/mcp-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "scan-documents-mcp",
3-
"version": "0.1.0-alpha.22",
3+
"version": "0.1.0-alpha.23",
44
"description": "The official MCP Server for the Scan Documents API",
55
"author": "Scan Documents <support@scan-documents.com>",
66
"types": "dist/index.d.ts",

packages/mcp-server/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const newMcpServer = () =>
2121
new McpServer(
2222
{
2323
name: 'scan_documents_api',
24-
version: '0.1.0-alpha.22',
24+
version: '0.1.0-alpha.23',
2525
},
2626
{ capabilities: { tools: {}, logging: {} } },
2727
);

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.1.0-alpha.22'; // x-release-please-version
1+
export const VERSION = '0.1.0-alpha.23'; // x-release-please-version

0 commit comments

Comments
 (0)