From cc8ca91e0158fcd1e1b0a05654440043ffa7cabf Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Fri, 18 Oct 2024 11:23:04 +1100 Subject: [PATCH] Release 0.21.1 --- CHANGELOG.md | 4 ++++ deno.json | 2 +- toolbox.ts | 14 ++++++++------ 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 795e425..949326f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # kv-toolbox change log +## Version 0.21.1 + +- fix: add `.watch()` method to toolbox (d7c916f) + ## Version 0.21.0 - feat: make sizeOf public (738b6bf) diff --git a/deno.json b/deno.json index ece8521..9abeb97 100644 --- a/deno.json +++ b/deno.json @@ -1,6 +1,6 @@ { "name": "@kitsonk/kv-toolbox", - "version": "0.21.0", + "version": "0.21.1", "exports": { ".": "./toolbox.ts", "./batched_atomic": "./batched_atomic.ts", diff --git a/toolbox.ts b/toolbox.ts index 5d5f5e2..6f89bb3 100644 --- a/toolbox.ts +++ b/toolbox.ts @@ -51,21 +51,23 @@ * capabilities of the toolbox are provided by additional exports of the * library: * - * - [batched_atomic](../doc/batched_atomic/~) - Provides a way to perform + * - [batched_atomic](https://jsr.io/@kitsonk/kv-toolbox/doc/batched_atomic) - Provides a way to perform * atomic operations in batches while working around the limitations of * Deno KV. - * - [blob](../doc/blob/~) - Provides a way to store arbitrarily large binary + * - [blob](https://jsr.io/@kitsonk/kv-toolbox/doc/blob) - Provides a way to store arbitrarily large binary * data in Deno KV. - * - [crypto](../doc/crypto/~) - Provides a way to encrypt and decrypt data in + * - [crypto](https://jsr.io/@kitsonk/kv-toolbox/doc/crypto) - Provides a way to encrypt and decrypt data in * Deno KV. - * - [json](../doc/json/~) - Provides utilities for handling Deno KV entries, + * - [json](https://jsr.io/@kitsonk/kv-toolbox/doc/json) - Provides utilities for handling Deno KV entries, * keys, and values as structures which can be serialized and deserialized to * JSON. - * - [keys](../doc/keys/~) - Provides convenience functions for working with + * - [keys](https://jsr.io/@kitsonk/kv-toolbox/doc/keys) - Provides convenience functions for working with * keys in Deno KV. - * - [ndjson](../doc/ndjson/~) - Utilities for handling NDJSON which is a method + * - [ndjson](https://jsr.io/@kitsonk/kv-toolbox/doc/ndjson) - Utilities for handling NDJSON which is a method * for encoding JSON in a way that supports streaming, where each JSON entity * is separated with a newline. + * - [size_of](https://jsr.io/@kitsonk/kv-toolbox/doc/size_of) - Provides a way to calculate the size of a + * JavaScript object in bytes. * * @module */