Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pdf-inspector"
version = "1.16.0"
version = "1.17.0"
edition = "2021"
# Oldest compiler the crate builds on (slice::as_chunks). Independent of the
# 1.98 pin in rust-toolchain.toml, which is what we develop and release with.
Expand Down
4 changes: 2 additions & 2 deletions napi/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion napi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pdf-inspector-napi"
version = "1.16.0"
version = "1.17.0"
edition = "2021"

[lib]
Expand Down
12 changes: 6 additions & 6 deletions napi/bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions napi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@firecrawl/pdf-inspector",
"version": "1.16.0",
"version": "1.17.0",
"description": "Fast PDF classification and text extraction. Detect text-based vs scanned PDFs, extract text by region with quality checks. Native Rust performance via napi-rs.",
"main": "index.js",
"types": "index.d.ts",
Expand Down Expand Up @@ -52,11 +52,11 @@
"@napi-rs/cli": "^3.4.1"
},
"optionalDependencies": {
"@firecrawl/pdf-inspector-linux-x64-gnu": "1.16.0",
"@firecrawl/pdf-inspector-linux-x64-musl": "1.16.0",
"@firecrawl/pdf-inspector-linux-arm64-gnu": "1.16.0",
"@firecrawl/pdf-inspector-linux-arm64-musl": "1.16.0",
"@firecrawl/pdf-inspector-darwin-arm64": "1.16.0",
"@firecrawl/pdf-inspector-win32-x64-msvc": "1.16.0"
"@firecrawl/pdf-inspector-linux-x64-gnu": "1.17.0",
"@firecrawl/pdf-inspector-linux-x64-musl": "1.17.0",
"@firecrawl/pdf-inspector-linux-arm64-gnu": "1.17.0",
"@firecrawl/pdf-inspector-linux-arm64-musl": "1.17.0",
"@firecrawl/pdf-inspector-darwin-arm64": "1.17.0",
"@firecrawl/pdf-inspector-win32-x64-msvc": "1.17.0"
}
}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "maturin"
name = "pdf-inspector"
# Keep package versions in sync with `python3 scripts/version.py <version>`.
# CI publishes automatically when the synchronized change lands on main.
version = "1.16.0"
version = "1.17.0"
description = "Fast PDF inspection, classification, and text extraction with smart scanned vs text-based detection"
readme = "docs/python.md"
license = { text = "MIT" }
Expand Down
2 changes: 1 addition & 1 deletion site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,7 @@ <h2>Start with Node.<br>Use the CLI.</h2>
<script>
(() => {
const MAX_FILE_SIZE = 25 * 1024 * 1024;
const WASM_MODULE_URL = "https://cdn.jsdelivr.net/npm/@firecrawl/pdf-inspector-wasm@1.16.0/pdf_inspector_wasm.js";
const WASM_MODULE_URL = "https://cdn.jsdelivr.net/npm/@firecrawl/pdf-inspector-wasm@1.17.0/pdf_inspector_wasm.js";
const input = document.querySelector("#pdf-input");
const dropZone = document.querySelector("#drop-zone");
const filePanel = document.querySelector("#demo-file");
Expand Down
4 changes: 2 additions & 2 deletions wasm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pdf-inspector-wasm"
version = "1.16.0"
version = "1.17.0"
edition = "2021"
authors = ["Firecrawl Team"]
description = "Browser WebAssembly bindings for pdf-inspector"
Expand Down