Skip to content

Commit 2a1f8c7

Browse files
release: 0.136.0
1 parent 827a434 commit 2a1f8c7

7 files changed

Lines changed: 26 additions & 6 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.135.0"
2+
".": "0.136.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.136.0 (2026-03-27)
4+
5+
Full Changelog: [v0.135.0...v0.136.0](https://github.com/lithic-com/lithic-node/compare/v0.135.0...v0.136.0)
6+
7+
### Features
8+
9+
* **api:** add override_company_name parameter to payments ACH ([954b27e](https://github.com/lithic-com/lithic-node/commit/954b27e3fb8dd7b8c55ea57b42d878094efbe3d8))
10+
11+
12+
### Chores
13+
14+
* **ci:** skip lint on metadata-only changes ([10dfba6](https://github.com/lithic-com/lithic-node/commit/10dfba6a8f96b1df7d76885f0a762f50b2ada322))
15+
* **internal:** codegen related update ([827a434](https://github.com/lithic-com/lithic-node/commit/827a4344ef5a4e6a47a58564a69373d1135dedcf))
16+
* **internal:** support custom-instructions-path flag in MCP servers ([21854f4](https://github.com/lithic-com/lithic-node/commit/21854f4bfde44d17f4f22a0f25913f7e91d87c21))
17+
18+
19+
### Documentation
20+
21+
* **api:** clarify nature_of_business and qr_code_url field constraints ([c36c997](https://github.com/lithic-com/lithic-node/commit/c36c99779ede1d40967ed1763e5124e2f38c3db1))
22+
323
## 0.135.0 (2026-03-23)
424

525
Full Changelog: [v0.134.0...v0.135.0](https://github.com/lithic-com/lithic-node/compare/v0.134.0...v0.135.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.135.0",
3+
"version": "0.136.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/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dxt_version": "0.2",
33
"name": "lithic-mcp",
4-
"version": "0.135.0",
4+
"version": "0.136.0",
55
"description": "The official MCP Server for the Lithic API",
66
"author": {
77
"name": "Lithic",

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.135.0",
3+
"version": "0.136.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
@@ -27,7 +27,7 @@ export const newMcpServer = async ({
2727
new McpServer(
2828
{
2929
name: 'lithic_api',
30-
version: '0.135.0',
30+
version: '0.136.0',
3131
},
3232
{
3333
instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }),

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.135.0'; // x-release-please-version
1+
export const VERSION = '0.136.0'; // x-release-please-version

0 commit comments

Comments
 (0)