Skip to content

Commit 3c24804

Browse files
chore(release): v0.41.1 [skip ci]
1 parent 6f92903 commit 3c24804

9 files changed

Lines changed: 20 additions & 20 deletions

File tree

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ members = [
2727
]
2828

2929
[workspace.package]
30-
version = "0.41.0"
30+
version = "0.41.1"
3131
edition = "2021"
3232
license = "MIT"
3333
repository = "https://github.com/docling-project/docling.rs"

crates/docling-asr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ categories.workspace = true
1212
rust-version.workspace = true
1313

1414
[dependencies]
15-
docling-core = { path = "../docling-core", version = "0.41.0" }
15+
docling-core = { path = "../docling-core", version = "0.41.1" }
1616
# Same ort as docling-pdf so the workspace keeps a single ONNX runtime.
1717
ort = { version = "2.0.0-rc.12", default-features = false, features = ["std", "download-binaries", "tls-rustls"] }
1818
serde_json = "1"

crates/docling-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ directml = ["docling/directml"]
4242
coreml = ["docling/coreml"]
4343

4444
[dependencies]
45-
docling = { path = "../docling", version = "0.41.0" }
46-
docling-serve = { path = "../docling-serve", version = "0.41.0", optional = true, default-features = false }
45+
docling = { path = "../docling", version = "0.41.1" }
46+
docling-serve = { path = "../docling-serve", version = "0.41.1", optional = true, default-features = false }
4747
serde_json = "1"
4848
tokio = { version = "1", features = ["rt-multi-thread"], optional = true }

crates/docling-node/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ crate-type = ["cdylib"]
2828

2929
[dependencies]
3030
# `chunking` pulls in the HF-tokenizer-backed HybridChunker for the chunk* API.
31-
docling = { path = "../docling", version = "0.41.0", features = ["chunking"] }
31+
docling = { path = "../docling", version = "0.41.1", features = ["chunking"] }
3232
# Node-API bindings. `napi4` enables threadsafe functions, used for streaming.
3333
napi = { version = "2", default-features = false, features = ["napi4"] }
3434
napi-derive = "2"

crates/docling-pdf/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ directml = ["ort/directml", "ort/copy-dylibs"]
2828
coreml = ["ort/coreml", "ort/copy-dylibs"]
2929

3030
[dependencies]
31-
docling-core = { path = "../docling-core", version = "0.41.0" }
31+
docling-core = { path = "../docling-core", version = "0.41.1" }
3232
pdfium-render = "0.8"
3333
ort = { version = "2.0.0-rc.12", default-features = false, features = ["std", "download-binaries", "tls-rustls"] }
3434
image = "0.25"

crates/docling-rag/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ redis = ["dep:redis", "dep:futures-lite"]
3737
# break this branch's merge-ref build. Post-merge, release.sh rewrites these
3838
# to exact pins automatically (its sed matches any quoted version here).
3939
# `chunking` enables the HF-tokenizer-backed HybridChunker (RAG_CHUNKER=hybrid).
40-
docling = { path = "../docling", version = "0.41.0", features = ["chunking"] }
40+
docling = { path = "../docling", version = "0.41.1", features = ["chunking"] }
4141
# Direct dep only for pdfium_backend::page_count (PDF page metrics); already in
4242
# the graph via docling.rs, so this adds no compile cost.
43-
docling-pdf = { path = "../docling-pdf", version = "0.41.0" }
43+
docling-pdf = { path = "../docling-pdf", version = "0.41.1" }
4444
# Counting slides/sheets in OOXML containers for page metrics (names only).
4545
zip = { version = "2.2", default-features = false, features = ["deflate"] }
4646

crates/docling-serve/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ coreml = ["docling/coreml"]
2121

2222
[dependencies]
2323
axum = { version = "0.8", features = ["multipart"] }
24-
docling = { path = "../docling", version = "0.41.0" }
24+
docling = { path = "../docling", version = "0.41.1" }
2525
serde = { version = "1", features = ["derive"] }
2626
serde_json = "1"
2727
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "net", "signal"] }

crates/docling/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ coreml = ["docling-pdf/coreml"]
3535
calamine = { version = "0.26", features = ["dates"] }
3636
csv = "1.4.0"
3737
headless_chrome = { version = "1.0", optional = true }
38-
docling-asr = { path = "../docling-asr", version = "0.41.0" }
39-
docling-core = { path = "../docling-core", version = "0.41.0" }
40-
docling-pdf = { path = "../docling-pdf", version = "0.41.0" }
38+
docling-asr = { path = "../docling-asr", version = "0.41.1" }
39+
docling-core = { path = "../docling-core", version = "0.41.1" }
40+
docling-pdf = { path = "../docling-pdf", version = "0.41.1" }
4141
image = { version = "0.25", default-features = false, features = ["png", "jpeg", "gif", "bmp", "tiff", "webp"] }
4242
mail-parser = "0.11"
4343
pulldown-cmark = { version = "0.13.4", default-features = false }

0 commit comments

Comments
 (0)