Skip to content

Commit 7ab3946

Browse files
chore(release): v0.35.0 [skip ci]
1 parent 3e18f93 commit 7ab3946

7 files changed

Lines changed: 10 additions & 10 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ members = [
2525
]
2626

2727
[workspace.package]
28-
version = "0.34.0"
28+
version = "0.35.0"
2929
edition = "2021"
3030
license = "MIT"
3131
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
@@ -13,7 +13,7 @@ categories.workspace = true
1313
rust-version = "1.85"
1414

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

crates/docling-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ web-browser = ["docling/web-browser"]
3030
chunking = ["docling/chunking"]
3131

3232
[dependencies]
33-
docling = { path = "../docling", version = "0.34.0" }
33+
docling = { path = "../docling", version = "0.35.0" }
3434
serde_json = "1"

crates/docling-node/Cargo.toml

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

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

crates/docling-pdf/Cargo.toml

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

1515
[dependencies]
16-
docling-core = { path = "../docling-core", version = "0.34.0" }
16+
docling-core = { path = "../docling-core", version = "0.35.0" }
1717
pdfium-render = "0.8"
1818
ort = { version = "2.0.0-rc.12", default-features = false, features = ["std", "download-binaries", "tls-rustls"] }
1919
image = "0.25"

crates/docling-rag/Cargo.toml

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

crates/docling/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ chunking = ["docling-core/chunking"]
2929
calamine = { version = "0.26", features = ["dates"] }
3030
csv = "1.4.0"
3131
headless_chrome = { version = "1.0", optional = true }
32-
docling-asr = { path = "../docling-asr", version = "0.34.0" }
33-
docling-core = { path = "../docling-core", version = "0.34.0" }
34-
docling-pdf = { path = "../docling-pdf", version = "0.34.0" }
32+
docling-asr = { path = "../docling-asr", version = "0.35.0" }
33+
docling-core = { path = "../docling-core", version = "0.35.0" }
34+
docling-pdf = { path = "../docling-pdf", version = "0.35.0" }
3535
image = { version = "0.25", default-features = false, features = ["png", "jpeg", "gif", "bmp", "tiff", "webp"] }
3636
mail-parser = "0.11"
3737
pulldown-cmark = { version = "0.13.4", default-features = false }

0 commit comments

Comments
 (0)