From c451b51b4cdde71eaf482ae921e6c30423670dfc Mon Sep 17 00:00:00 2001 From: eden <198768181+lcweden@users.noreply.github.com> Date: Mon, 25 May 2026 14:24:04 +0000 Subject: [PATCH 1/2] docs: correct capitalization --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7a519b1..f616fea 100644 --- a/README.md +++ b/README.md @@ -256,7 +256,7 @@ const blob = await new Response(stream).blob(); ``` > [!TIP] -> `JSONTextDecoderStream` supports Token-level processing only. If you need to replace values that +> `JSONTextDecoderStream` supports token-level processing only. If you need to replace values that > may be nested inside objects or arrays, you will need to use `JSONTextDecoder` directly. ## License From ef1cd50ebebb7c83f5c99a1c4dc15b3e614070d1 Mon Sep 17 00:00:00 2001 From: eden <198768181+lcweden@users.noreply.github.com> Date: Mon, 25 May 2026 14:24:31 +0000 Subject: [PATCH 2/2] chore: update version to 0.2.1 in deno.json and package.json --- deno.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deno.json b/deno.json index c1edf81..5f4635a 100644 --- a/deno.json +++ b/deno.json @@ -1,6 +1,6 @@ { "name": "@lcweden/jsontext", - "version": "0.2.0", + "version": "0.2.1", "license": "MIT", "tasks": { "bench": "deno bench --allow-all", diff --git a/package.json b/package.json index fd6871f..10d6cd9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jsontext", - "version": "0.2.0", + "version": "0.2.1", "license": "MIT", "description": "State machine for incremental JSON processing.", "keywords": ["json", "stream"],