@libredb/libredb 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -98,7 +98,7 @@ bunx jsr add @libredb/libredb
98
98
  **CDN** — every release is served from the npm registry by the usual CDNs. Pin a version:
99
99
 
100
100
  ```ts
101
- import { open, kv } from "https://esm.sh/@libredb/libredb@0.1.0";
101
+ import { open, kv } from "https://esm.sh/@libredb/libredb@0.1.1";
102
102
  ```
103
103
 
104
104
  **Browser** — a dedicated entry that imports nothing from `node:`, so it bundles for the browser
package/dist/core.d.ts CHANGED
@@ -20,7 +20,7 @@
20
20
  * and discards any record a crash left half-written.
21
21
  */
22
22
  /** The LibreDB package version. Kept in sync with package.json. */
23
- export declare const version = "0.1.0";
23
+ export declare const version = "0.1.1";
24
24
  /**
25
25
  * A key in the kernel: an immutable sequence of bytes.
26
26
  *
package/dist/core.js CHANGED
@@ -20,7 +20,7 @@
20
20
  * and discards any record a crash left half-written.
21
21
  */
22
22
  /** The LibreDB package version. Kept in sync with package.json. */
23
- export const version = "0.1.0";
23
+ export const version = "0.1.1";
24
24
  /**
25
25
  * Compare two keys by unsigned byte-lexicographic order: the first differing
26
26
  * byte decides, and if one key is a prefix of the other the shorter sorts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libredb/libredb",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A small, readable, embeddable, multi-model database. One ordered key-value core, thin model lenses on top.",
5
5
  "keywords": [
6
6
  "database",