Skip to content

Commit cc8ca91

Browse files
committed
Release 0.21.1
1 parent d7c916f commit cc8ca91

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# kv-toolbox change log
22

3+
## Version 0.21.1
4+
5+
- fix: add `.watch()` method to toolbox (d7c916f)
6+
37
## Version 0.21.0
48

59
- feat: make sizeOf public (738b6bf)

deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kitsonk/kv-toolbox",
3-
"version": "0.21.0",
3+
"version": "0.21.1",
44
"exports": {
55
".": "./toolbox.ts",
66
"./batched_atomic": "./batched_atomic.ts",

toolbox.ts

+8-6
Original file line numberDiff line numberDiff line change
@@ -51,21 +51,23 @@
5151
* capabilities of the toolbox are provided by additional exports of the
5252
* library:
5353
*
54-
* - [batched_atomic](../doc/batched_atomic/~) - Provides a way to perform
54+
* - [batched_atomic](https://jsr.io/@kitsonk/kv-toolbox/doc/batched_atomic) - Provides a way to perform
5555
* atomic operations in batches while working around the limitations of
5656
* Deno KV.
57-
* - [blob](../doc/blob/~) - Provides a way to store arbitrarily large binary
57+
* - [blob](https://jsr.io/@kitsonk/kv-toolbox/doc/blob) - Provides a way to store arbitrarily large binary
5858
* data in Deno KV.
59-
* - [crypto](../doc/crypto/~) - Provides a way to encrypt and decrypt data in
59+
* - [crypto](https://jsr.io/@kitsonk/kv-toolbox/doc/crypto) - Provides a way to encrypt and decrypt data in
6060
* Deno KV.
61-
* - [json](../doc/json/~) - Provides utilities for handling Deno KV entries,
61+
* - [json](https://jsr.io/@kitsonk/kv-toolbox/doc/json) - Provides utilities for handling Deno KV entries,
6262
* keys, and values as structures which can be serialized and deserialized to
6363
* JSON.
64-
* - [keys](../doc/keys/~) - Provides convenience functions for working with
64+
* - [keys](https://jsr.io/@kitsonk/kv-toolbox/doc/keys) - Provides convenience functions for working with
6565
* keys in Deno KV.
66-
* - [ndjson](../doc/ndjson/~) - Utilities for handling NDJSON which is a method
66+
* - [ndjson](https://jsr.io/@kitsonk/kv-toolbox/doc/ndjson) - Utilities for handling NDJSON which is a method
6767
* for encoding JSON in a way that supports streaming, where each JSON entity
6868
* is separated with a newline.
69+
* - [size_of](https://jsr.io/@kitsonk/kv-toolbox/doc/size_of) - Provides a way to calculate the size of a
70+
* JavaScript object in bytes.
6971
*
7072
* @module
7173
*/

0 commit comments

Comments
 (0)