Skip to content

Commit e10dea3

Browse files
chore(release): v0.50.0 [skip ci]
1 parent d31e15a commit e10dea3

10 files changed

Lines changed: 24 additions & 24 deletions

File tree

Cargo.lock

Lines changed: 9 additions & 9 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
@@ -34,7 +34,7 @@ members = [
3434
]
3535

3636
[workspace.package]
37-
version = "0.49.0"
37+
version = "0.50.0"
3838
edition = "2021"
3939
license = "MIT"
4040
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.49.0" }
15+
docling-core = { path = "../docling-core", version = "0.50.0" }
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.49.0" }
46-
docling-serve = { path = "../docling-serve", version = "0.49.0", optional = true, default-features = false }
45+
docling = { path = "../docling", version = "0.50.0" }
46+
docling-serve = { path = "../docling-serve", version = "0.50.0", 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.49.0", features = ["chunking"] }
31+
docling = { path = "../docling", version = "0.50.0", 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
@@ -48,7 +48,7 @@ directml = ["ml", "ort/directml", "ort/copy-dylibs"]
4848
coreml = ["ml", "ort/coreml", "ort/copy-dylibs"]
4949

5050
[dependencies]
51-
docling-core = { path = "../docling-core", version = "0.49.0" }
51+
docling-core = { path = "../docling-core", version = "0.50.0" }
5252
pdfium-render = { version = "0.8", optional = true }
5353
ort = { version = "2.0.0-rc.12", default-features = false, features = ["std", "download-binaries", "tls-rustls"], optional = true }
5454
image = { version = "0.25", optional = true }

crates/docling-rag/Cargo.toml

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

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.49.0" }
24+
docling = { path = "../docling", version = "0.50.0" }
2525
serde = { version = "1", features = ["derive"] }
2626
serde_json = "1"
2727
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "net", "signal"] }

crates/docling-wasm/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ ocr = [
3232
[dependencies]
3333
# The pure-Rust declarative slice only: no pdfium/ONNX (pdf, asr), no HTTP
3434
# client (fetch-images) — exactly the set that compiles for wasm32 (#79).
35-
docling = { path = "../docling", version = "0.49.0", default-features = false, features = ["pdf-text"] }
36-
docling-core = { path = "../docling-core", version = "0.49.0", optional = true }
35+
docling = { path = "../docling", version = "0.50.0", default-features = false, features = ["pdf-text"] }
36+
docling-core = { path = "../docling-core", version = "0.50.0", optional = true }
3737
# ocr_prep only: line prep + CTC decode shared with the native pipeline.
38-
docling-pdf = { path = "../docling-pdf", version = "0.49.0", default-features = false, features = ["ocr-prep"], optional = true }
38+
docling-pdf = { path = "../docling-pdf", version = "0.50.0", default-features = false, features = ["ocr-prep"], optional = true }
3939
# Input decoding for the OCR path; codecs mirror the browser's usual suspects.
4040
image = { version = "0.25", default-features = false, features = ["png", "jpeg", "bmp", "tiff", "webp"], optional = true }
4141
js-sys = { version = "0.3", optional = true }

crates/docling/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ headless_chrome = { version = "1.0", optional = true }
5757
# O_EXCL temp file with an unpredictable name for the browser pre-render page
5858
# (avoids a predictable /tmp path a local attacker could pre-plant a symlink at).
5959
tempfile = { version = "3", optional = true }
60-
docling-asr = { path = "../docling-asr", version = "0.49.0", optional = true }
61-
docling-core = { path = "../docling-core", version = "0.49.0" }
62-
docling-pdf = { path = "../docling-pdf", version = "0.49.0", optional = true, default-features = false }
60+
docling-asr = { path = "../docling-asr", version = "0.50.0", optional = true }
61+
docling-core = { path = "../docling-core", version = "0.50.0" }
62+
docling-pdf = { path = "../docling-pdf", version = "0.50.0", optional = true, default-features = false }
6363
image = { version = "0.25", default-features = false, features = ["png", "jpeg", "gif", "bmp", "tiff", "webp"] }
6464
mail-parser = "0.11"
6565
pulldown-cmark = { version = "0.13.4", default-features = false }

0 commit comments

Comments
 (0)