Bump version to 1.1.4 across all components
CI / test (push) Has been cancelled
CI / verify (push) Has been cancelled
Clients CI / build-server (push) Has been cancelled
Clients CI / test-python (push) Has been cancelled
Clients CI / test-javascript (push) Has been cancelled
Clients CI / test-nim (push) Has been cancelled
Clients CI / test-rust (push) Has been cancelled

This commit is contained in:
2026-05-17 20:57:19 +03:00
parent 3ac53ecda2
commit a28c845476
37 changed files with 60 additions and 60 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ import ../query/lexer
import ../query/parser
const
Version = "1.1.2"
Version = "1.1.4"
Prompt = "bara> "
ContinuationPrompt = " .. > "
+2 -2
View File
@@ -185,7 +185,7 @@ proc queryHandler(server: HttpServer): RequestHandler =
proc healthHandler(): RequestHandler =
return proc(request: Request) {.gcsafe.} =
let ctx = newContext(request)
ctx.json(%*{"status": "ok", "version": "1.1.2"})
ctx.json(%*{"status": "ok", "version": "1.1.4"})
proc metricsHandler(server: HttpServer): RequestHandler =
return proc(request: Request) {.gcsafe.} =
@@ -521,7 +521,7 @@ function showTab(idx){
}
setInterval(() => { if(document.querySelectorAll('.panel')[4].classList.contains('active')) loadMetrics() }, 5000)
</script>
<div class='status' style='text-align:center;padding:10px'>BaraDB v1.1.0 — Multimodal Database Engine</div>
<div class='status' style='text-align:center;padding:10px'>BaraDB v1.1.4 — Multimodal Database Engine</div>
</body></html>"""
request.respond(200, @[("Content-Type", "text/html; charset=utf-8")], html)
+1 -1
View File
@@ -116,7 +116,7 @@ proc exportOtlp*(tracer: Tracer, endpoint: string = "http://localhost:4318/v1/tr
{"key": "service.name", "value": {"stringValue": "baradadb"}}
]},
"scopeSpans": [{
"scope": {"name": "baradadb-tracer", "version": "1.1.2"},
"scope": {"name": "baradadb-tracer", "version": "1.1.4"},
"spans": otlpSpans
}]
}]
+2 -2
View File
@@ -503,7 +503,7 @@ proc handleInitialize(params: JsonNode): JsonNode =
"protocolVersion": "2024-11-05",
"serverInfo": {
"name": "BaraDB MCP Server",
"version": "1.1.2"
"version": "1.1.4"
},
"capabilities": {
"tools": {}
@@ -690,7 +690,7 @@ proc processMessage(raw: string): string =
# ---------------------------------------------------------------------------
proc init*(dataDir: string = "./data"): McpServerCtx =
logToStderr("BaraDB MCP Server v1.1.2 initializing...")
logToStderr("BaraDB MCP Server v1.1.4 initializing...")
let db = newLSMTree(dataDir)
let ctx = newExecutionContext(db)
ctx.txnManager = newTxnManager()
+1 -1
View File
@@ -86,7 +86,7 @@ proc main() =
# Init structured logger from config
let logLvl = parseEnum[LogLevel]("ll" & capitalizeAscii(config.logLevel))
defaultLogger = newLogger(logLvl, config.logFile)
info("BaraDB v1.1.0 — Multimodal Database Engine")
info("BaraDB v1.1.4 — Multimodal Database Engine")
# Security check: warn if JWT secret is not configured
if config.jwtSecret.len == 0: