Skip to content

Commit fb8962e

Browse files
committed
feat: update documentation and version references for v1.3.10
- Update CHANGELOG.md to reflect v1.3.10 with comprehensive terminal compatibility improvements - Update all version references from 1.3.9 to 1.3.10 in source files - Document multi-tier fallback system and enhanced environment diagnostics - Add troubleshooting documentation for cross-terminal compatibility
1 parent 3a46c90 commit fb8962e

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All notable changes to the Bibble project will be documented in this file.
44

5-
## [1.3.9] - 2025-08-28
5+
## [1.3.10] - 2025-08-28
66

77
### 🚀 MAJOR RELIABILITY UPDATE - CROSS-TERMINAL COMPATIBILITY
88

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const program = new Command();
2727
program
2828
.name("bibble")
2929
.description("CLI chatbot with MCP support")
30-
.version("1.3.9");
30+
.version("1.3.10");
3131

3232
// Initialize configuration
3333
ensureConfigDirExists();

src/mcp/client.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export class McpClient {
100100
// Create client
101101
const mcp = new Client({
102102
name: "bibble-mcp-client",
103-
version: "1.3.9"
103+
version: "1.3.10"
104104
});
105105

106106
// Connect to server
@@ -215,7 +215,7 @@ export class McpClient {
215215
// Create client
216216
const mcp = new Client({
217217
name: "bibble-mcp-client",
218-
version: "1.3.9"
218+
version: "1.3.10"
219219
});
220220

221221
// Connect to server
@@ -273,7 +273,7 @@ export class McpClient {
273273
// Create client
274274
const mcp = new Client({
275275
name: "bibble-mcp-client",
276-
version: "1.3.9"
276+
version: "1.3.10"
277277
});
278278

279279
// Connect to server
@@ -342,7 +342,7 @@ export class McpClient {
342342
// Create client
343343
const mcp = new Client({
344344
name: "bibble-mcp-client",
345-
version: "1.3.9"
345+
version: "1.3.10"
346346
});
347347

348348
// Connect to server

src/ui/splash.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export class Splash {
7878

7979
// Add version info
8080
if (showVersion) {
81-
content += '\n' + theme.label('Version:', '1.3.9');
81+
content += '\n' + theme.label('Version:', '1.3.10');
8282
}
8383

8484
// Add helpful text
@@ -207,7 +207,7 @@ export class Splash {
207207
console.log('\n' + Splash.createSystemStatus({
208208
model,
209209
mcpServers,
210-
version: '1.3.9',
210+
version: '1.3.10',
211211
theme: 'Neon Dreams',
212212
}));
213213
}

0 commit comments

Comments
 (0)