release: bump version to 1.1.2 (forum-tested, nested SQL fixes)
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
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:
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
**A multimodal database engine written in Nim — 100% native, zero dependencies.**
|
**A multimodal database engine written in Nim — 100% native, zero dependencies.**
|
||||||
|
|
||||||
[](baradadb.nimble)
|
[](baradadb.nimble)
|
||||||
[](docs/index.md)
|
[](docs/index.md)
|
||||||
[](https://github.com/katehonz/barabaDB)
|
[](https://github.com/katehonz/barabaDB)
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
# Package
|
# Package
|
||||||
version = "1.1.0"
|
version = "1.1.2"
|
||||||
author = "BaraDB Team"
|
author = "BaraDB Team"
|
||||||
description = "BaraDB — Multimodal database written in Nim"
|
description = "BaraDB — Multimodal database written in Nim"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "baradb",
|
"name": "baradb",
|
||||||
"version": "1.1.0",
|
"version": "1.1.2",
|
||||||
"description": "Official JavaScript/Node.js client for BaraDB — Multimodal Database Engine",
|
"description": "Official JavaScript/Node.js client for BaraDB — Multimodal Database Engine",
|
||||||
"main": "baradb.js",
|
"main": "baradb.js",
|
||||||
"types": "baradb.d.ts",
|
"types": "baradb.d.ts",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# Package
|
# Package
|
||||||
|
|
||||||
version = "1.1.0"
|
version = "1.1.2"
|
||||||
author = "BaraDB Team"
|
author = "BaraDB Team"
|
||||||
description = "Official Nim client for BaraDB — async binary protocol client"
|
description = "Official Nim client for BaraDB — async binary protocol client"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ from .core import (
|
|||||||
ResultFormat,
|
ResultFormat,
|
||||||
)
|
)
|
||||||
|
|
||||||
__version__ = "1.1.0"
|
__version__ = "1.1.2"
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"Client",
|
"Client",
|
||||||
"QueryBuilder",
|
"QueryBuilder",
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "baradb"
|
name = "baradb"
|
||||||
version = "1.1.0"
|
version = "1.1.2"
|
||||||
description = "Official Python client for BaraDB — Multimodal Database Engine"
|
description = "Official Python client for BaraDB — Multimodal Database Engine"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
license = { text = "Apache-2.0" }
|
license = { text = "Apache-2.0" }
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "baradb"
|
name = "baradb"
|
||||||
version = "1.1.0"
|
version = "1.1.2"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["BaraDB Team <team@baradb.dev>"]
|
authors = ["BaraDB Team <team@baradb.dev>"]
|
||||||
description = "Official async Rust client for BaraDB — binary protocol client"
|
description = "Official async Rust client for BaraDB — binary protocol client"
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import ../query/lexer
|
|||||||
import ../query/parser
|
import ../query/parser
|
||||||
|
|
||||||
const
|
const
|
||||||
Version = "1.1.0"
|
Version = "1.1.2"
|
||||||
Prompt = "bara> "
|
Prompt = "bara> "
|
||||||
ContinuationPrompt = " .. > "
|
ContinuationPrompt = " .. > "
|
||||||
|
|
||||||
|
|||||||
@@ -184,7 +184,7 @@ proc queryHandler(server: HttpServer): RequestHandler =
|
|||||||
proc healthHandler(): RequestHandler =
|
proc healthHandler(): RequestHandler =
|
||||||
return proc(request: Request) {.gcsafe.} =
|
return proc(request: Request) {.gcsafe.} =
|
||||||
let ctx = newContext(request)
|
let ctx = newContext(request)
|
||||||
ctx.json(%*{"status": "ok", "version": "1.1.0"})
|
ctx.json(%*{"status": "ok", "version": "1.1.2"})
|
||||||
|
|
||||||
proc metricsHandler(server: HttpServer): RequestHandler =
|
proc metricsHandler(server: HttpServer): RequestHandler =
|
||||||
return proc(request: Request) {.gcsafe.} =
|
return proc(request: Request) {.gcsafe.} =
|
||||||
|
|||||||
@@ -116,7 +116,7 @@ proc exportOtlp*(tracer: Tracer, endpoint: string = "http://localhost:4318/v1/tr
|
|||||||
{"key": "service.name", "value": {"stringValue": "baradadb"}}
|
{"key": "service.name", "value": {"stringValue": "baradadb"}}
|
||||||
]},
|
]},
|
||||||
"scopeSpans": [{
|
"scopeSpans": [{
|
||||||
"scope": {"name": "baradadb-tracer", "version": "1.1.0"},
|
"scope": {"name": "baradadb-tracer", "version": "1.1.2"},
|
||||||
"spans": otlpSpans
|
"spans": otlpSpans
|
||||||
}]
|
}]
|
||||||
}]
|
}]
|
||||||
|
|||||||
Reference in New Issue
Block a user