diff --git a/Cargo.lock b/Cargo.lock index 8ed98eb..4d4624c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -326,7 +326,7 @@ dependencies = [ [[package]] name = "libpdf" -version = "0.2.0" +version = "0.2.1" dependencies = [ "clap", "lopdf", diff --git a/Cargo.toml b/Cargo.toml index d3af2d0..b35c7c4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libpdf" -version = "0.2.0" +version = "0.2.1" license = "ISC" edition = "2021" exclude = ["libpdf.node"] diff --git a/README.md b/README.md index c9c8679..8cdf917 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ This setup ensures you can easily install, build, and explore the capabilities o # Benchmark Result -![Benchmarking PDF Libraries.png](./benchmark%2FBenchmarking%20PDF%20Libraries.png) +![Benchmarking PDF Libraries.png](./benchmark/BenchmarkingV0.2.0.png) ## conclusion diff --git a/benchmark/BenchmarkingV0.2.0.png b/benchmark/BenchmarkingV0.2.0.png index 17eb15a..2a9e68e 100644 Binary files a/benchmark/BenchmarkingV0.2.0.png and b/benchmark/BenchmarkingV0.2.0.png differ diff --git a/package.json b/package.json index c183ab1..495baa1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "libpdf", - "version": "0.2.0", + "version": "0.2.1", "description": "LibPdf is a fast and efficient Node.js library for converting PDF files to text. Designed for simplicity and ease of use, LibPdf allows developers to quickly extract text content from PDFs, making it ideal for various applications such as data extraction, text analysis, and more.", "main": "index.js", "scripts": { diff --git a/src/lib.rs b/src/lib.rs index 9ea4d68..7f94706 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,7 +5,7 @@ use neon::prelude::*; use neon::types::buffer::TypedArray; fn version(mut cx: FunctionContext) -> JsResult { - Ok(cx.string("0.2.0")) + Ok(cx.string("0.2.1")) }