@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 +1 -1
- package/dist/core.d.ts +1 -1
- package/dist/core.js +1 -1
- package/package.json +1 -1
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.
|
|
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.
|
|
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.
|
|
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
|