Skip to content

Commit

Permalink
Release 0.21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk committed Oct 18, 2024
1 parent d7c916f commit cc8ca91
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kitsonk/kv-toolbox",
"version": "0.21.0",
"version": "0.21.1",
"exports": {
".": "./toolbox.ts",
"./batched_atomic": "./batched_atomic.ts",
Expand Down
14 changes: 8 additions & 6 deletions toolbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down

0 comments on commit cc8ca91

Please sign in to comment.