Skip to content

Commit 68c8627

Browse files
chore(release): v0.17.0 [skip ci]
1 parent 47b5321 commit 68c8627

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.16.0"
28+
version = "0.17.0"
2929
edition = "2021"
3030
license = "MIT"
3131
repository = "https://github.com/artiz/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.16.0" }
16+
docling-core = { path = "../docling-core", version = "0.17.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
@@ -22,4 +22,4 @@ path = "src/main.rs"
2222
web-browser = ["docling/web-browser"]
2323

2424
[dependencies]
25-
docling = { path = "../docling", version = "0.16.0" }
25+
docling = { path = "../docling", version = "0.17.0" }

crates/docling-node/Cargo.toml

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

3030
[dependencies]
31-
docling = { path = "../docling", version = "0.16.0" }
31+
docling = { path = "../docling", version = "0.17.0" }
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
@@ -13,7 +13,7 @@ categories.workspace = true
1313
rust-version = "1.82"
1414

1515
[dependencies]
16-
docling-core = { path = "../docling-core", version = "0.16.0" }
16+
docling-core = { path = "../docling-core", version = "0.17.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
@@ -38,10 +38,10 @@ redis = ["dep:redis", "dep:futures-lite"]
3838
# bumps every sibling's exact pin on master with each release, which would
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).
41-
docling = { path = "../docling", version = "0.16.0" }
41+
docling = { path = "../docling", version = "0.17.0" }
4242
# Direct dep only for pdfium_backend::page_count (PDF page metrics); already in
4343
# the graph via docling.rs, so this adds no compile cost.
44-
docling-pdf = { path = "../docling-pdf", version = "0.16.0" }
44+
docling-pdf = { path = "../docling-pdf", version = "0.17.0" }
4545
# Counting slides/sheets in OOXML containers for page metrics (names only).
4646
zip = { version = "2.2", default-features = false, features = ["deflate"] }
4747

crates/docling/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ web-browser = ["dep:headless_chrome"]
2727
calamine = { version = "0.26", features = ["dates"] }
2828
csv = "1.4.0"
2929
headless_chrome = { version = "1.0", optional = true }
30-
docling-asr = { path = "../docling-asr", version = "0.16.0" }
31-
docling-core = { path = "../docling-core", version = "0.16.0" }
32-
docling-pdf = { path = "../docling-pdf", version = "0.16.0" }
30+
docling-asr = { path = "../docling-asr", version = "0.17.0" }
31+
docling-core = { path = "../docling-core", version = "0.17.0" }
32+
docling-pdf = { path = "../docling-pdf", version = "0.17.0" }
3333
image = { version = "0.25", default-features = false, features = ["png", "jpeg", "gif", "bmp", "tiff", "webp"] }
3434
mail-parser = "0.11"
3535
pulldown-cmark = { version = "0.13.4", default-features = false }

0 commit comments

Comments
 (0)