Skip to content

Commit

Permalink
Merge pull request #203 from oliver-oloughlin/update-supported-deno-v…
Browse files Browse the repository at this point in the history
…ersion

fix: updated supported deno version
  • Loading branch information
oliver-oloughlin authored Mar 28, 2024
2 parents e85ebc9 + 89c6930 commit 1cbf808
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ collections and serialization/compression, while maintaining as much of the
native functionality as possible, like atomic operations, real-time data updates
and queue listeners.

_Supported Deno verisons:_ **^1.40.0**
_Supported Deno verisons:_ **^1.42.0**

## Highlights

- CRUD operations for selected and ranged documents with strong typing.
- Strongly typed CRUD operations for selected and ranged documents.
- Primary (unique) and secondary (non-unique) indexing.
- Extensible model strategy (Zod supported).
- Serialized, compressed and segmented storage for large objects.
Expand Down Expand Up @@ -142,7 +142,7 @@ type User = {
const UserModel = model<User>()

// Asymmetric model (mapped output)
const AsymmetricUserModel = model((user: User) => ({
const UserModel = model((user: User) => ({
upperCaseUsername: user.username.toUpperCase(),
ageInDecades: user.age / 10,
createdAt: new Date(),
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": "@olli/kvdex",
"version": "0.36.0",
"version": "0.36.1",
"exports": {
".": "./mod.ts",
"./ext/zod": "./ext/zod.ts",
Expand Down

0 comments on commit 1cbf808

Please sign in to comment.