Skip to content

Commit 925fd4f

Browse files
release: 0.129.0
1 parent 07d71d3 commit 925fd4f

6 files changed

Lines changed: 25 additions & 5 deletions

File tree

.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.128.0"
2+
".": "0.129.0"
33
}

CHANGELOG.md

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

3+
## 0.129.0 (2026-01-30)
4+
5+
Full Changelog: [v0.128.0...v0.129.0](https://github.com/lithic-com/lithic-node/compare/v0.128.0...v0.129.0)
6+
7+
### Features
8+
9+
* **api:** Add naics_code to account holder requests/responses ([432e7ee](https://github.com/lithic-com/lithic-node/commit/432e7ee8bc80d84fe7f5f5aecc3f60cab6ed8d0f))
10+
* **mcp:** allow specifying environment via remote server ([f2bbc59](https://github.com/lithic-com/lithic-node/commit/f2bbc59ef04e4c14c57e541d402148fcc5b7be1e))
11+
12+
13+
### Bug Fixes
14+
15+
* **mcp:** do not fallback on baseUrl if environment env variable is set ([07d71d3](https://github.com/lithic-com/lithic-node/commit/07d71d3bdb85356c58e1dc3a02e93aebea40a824))
16+
17+
18+
### Chores
19+
20+
* configure new SDK language ([a09926d](https://github.com/lithic-com/lithic-node/commit/a09926d7eee2338358ae33196a5b2e58b3c39b56))
21+
* **internal:** configure MCP Server hosting ([3feac24](https://github.com/lithic-com/lithic-node/commit/3feac242ccbf68dcddadf15443974965b7dbd9d7))
22+
323
## 0.128.0 (2026-01-27)
424

525
Full Changelog: [v0.127.0...v0.128.0](https://github.com/lithic-com/lithic-node/compare/v0.127.0...v0.128.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lithic",
3-
"version": "0.128.0",
3+
"version": "0.129.0",
44
"description": "The official TypeScript library for the Lithic API",
55
"author": "Lithic <sdk-feedback@lithic.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": "lithic-mcp",
3-
"version": "0.128.0",
3+
"version": "0.129.0",
44
"description": "The official MCP Server for the Lithic API",
55
"author": "Lithic <sdk-feedback@lithic.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: 'lithic_api',
24-
version: '0.128.0',
24+
version: '0.129.0',
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.128.0'; // x-release-please-version
1+
export const VERSION = '0.129.0'; // x-release-please-version

0 commit comments

Comments
 (0)