From c92be410069e7837ed5d5cd6c704c297250cde8c Mon Sep 17 00:00:00 2001 From: Jacek Fiszer Date: Mon, 13 Jan 2025 18:24:19 +0100 Subject: [PATCH] release: 0.0.6 --- README.md | 10 +++++----- deno.json | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 2864362..bfc30bc 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ efficient and high-quality PDF manipulation. To install `pdfrex` as a CLI tool, run: ```bash -deno install --global --allow-read --allow-write jsr:@jackfiszr/pdfrex@0.0.5 +deno install --global --allow-read --allow-write jsr:@jackfiszr/pdfrex@0.0.6 ``` This command installs `pdfrex` globally, enabling the `pdfrex` command with @@ -125,7 +125,7 @@ directly. ### Merge PDFs ```typescript -import { mergeAll, mergePdfs } from "jsr:@jackfiszr/pdfrex@0.0.5"; +import { mergeAll, mergePdfs } from "jsr:@jackfiszr/pdfrex@0.0.6"; // Merge all PDFs in the current directory await mergeAll(); @@ -142,7 +142,7 @@ await mergePdfs(["file1.pdf", "file2.pdf", "file3.pdf"], { ### Split PDFs ```typescript -import { splitAll, splitPdf } from "jsr:@jackfiszr/pdfrex@0.0.5"; +import { splitAll, splitPdf } from "jsr:@jackfiszr/pdfrex@0.0.6"; // Split all PDFs in the current directory await splitAll(); @@ -154,11 +154,11 @@ await splitPdf("document.pdf", { outputDir: "./pages", prefix: "page" }); ### Adding to a Node.js project ```bash -npx jsr add @jackfiszr/pdfrex@0.0.5 +npx jsr add @jackfiszr/pdfrex@0.0.6 ``` ```javascript -import { mergePdfs, splitPdf } from "@jackfiszr/pdfrex@0.0.5"; +import { mergePdfs, splitPdf } from "@jackfiszr/pdfrex@0.0.6"; ``` ## Contributing diff --git a/deno.json b/deno.json index 5f9ca40..8fd9f48 100644 --- a/deno.json +++ b/deno.json @@ -1,6 +1,6 @@ { "name": "@jackfiszr/pdfrex", - "version": "0.0.5", + "version": "0.0.6", "exports": "./mod.ts", "imports": { "@cliffy/command": "jsr:@cliffy/command@1.0.0-rc.7",