Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tokenleak/cli",
"version": "2.1.0",
"version": "2.1.1",
"private": true,
"type": "module",
"bin": {
Expand Down
8 changes: 4 additions & 4 deletions packages/cli/src/cli.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ describe('interactive helpers', () => {
test('buildLauncherBody keeps the full two-column launcher in a large terminal', () => {
const output = stripAnsi(
buildLauncherBody(
{ version: '2.1.0', helpText: 'help' },
{ version: '2.1.1', helpText: 'help' },
createMenuOptions(),
0,
140,
Expand All @@ -370,7 +370,7 @@ describe('interactive helpers', () => {
test('buildLauncherBody switches to a compact menu when the stacked launcher would overflow', () => {
const output = stripAnsi(
buildLauncherBody(
{ version: '2.1.0', helpText: 'help' },
{ version: '2.1.1', helpText: 'help' },
createMenuOptions(),
0,
88,
Expand All @@ -387,7 +387,7 @@ describe('interactive helpers', () => {
const options = createMenuOptions();
const customIndex = options.findIndex((o) => o.title === 'Build Custom Command');
const output = stripAnsi(
buildLauncherBody({ version: '2.1.0', helpText: 'help' }, options, customIndex, 88, 12).join(
buildLauncherBody({ version: '2.1.1', helpText: 'help' }, options, customIndex, 88, 12).join(
'\n',
),
);
Expand Down Expand Up @@ -993,7 +993,7 @@ describe('CLI invocation', () => {
const exitCode = await proc.exited;
const stdout = await new Response(proc.stdout).text();
expect(exitCode).toBe(0);
expect(stdout).toContain('2.1.0');
expect(stdout).toContain('2.1.1');
expect(stdout).toContain('schema');
});

Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tokenleak/core",
"version": "2.1.0",
"version": "2.1.1",
"private": true,
"type": "module",
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { VERSION } from './index';

describe('core', () => {
it('exports a version string', () => {
expect(VERSION).toBe('2.1.0');
expect(VERSION).toBe('2.1.1');
});

it('version is a valid semver format', () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const VERSION = '2.1.0';
export const VERSION = '2.1.1';

export type {
DailyUsage,
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tokenleak/mcp",
"version": "2.1.0",
"version": "2.1.1",
"private": true,
"type": "module",
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export function createTokenleakServer(registry?: ProviderRegistry): McpServer {

const server = new McpServer({
name: 'tokenleak',
version: '2.1.0',
version: '2.1.1',
});

registerTools(server, reg);
Expand Down
2 changes: 1 addition & 1 deletion packages/registry/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tokenleak/registry",
"version": "2.1.0",
"version": "2.1.1",
"private": true,
"type": "module",
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/renderers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tokenleak/renderers",
"version": "2.1.0",
"version": "2.1.1",
"private": true,
"type": "module",
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/tui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tokenleak/tui",
"version": "2.1.0",
"version": "2.1.1",
"private": true,
"type": "module",
"main": "./dist/index.js",
Expand Down
Loading