Skip to content

Commit

Permalink
release build
Browse files Browse the repository at this point in the history
  • Loading branch information
dewmal committed May 29, 2024
1 parent e142165 commit 86803d3
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libpdf"
version = "0.2.0"
version = "0.2.1"
license = "ISC"
edition = "2021"
exclude = ["libpdf.node"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Binary file modified benchmark/BenchmarkingV0.2.0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use neon::prelude::*;
use neon::types::buffer::TypedArray;

fn version(mut cx: FunctionContext) -> JsResult<JsString> {
Ok(cx.string("0.2.0"))
Ok(cx.string("0.2.1"))
}


Expand Down

0 comments on commit 86803d3

Please sign in to comment.