Skip to content

Commit 925b4c4

Browse files
committed
chore: release 0.2.1
1 parent eed431e commit 925b4c4

6 files changed

Lines changed: 12 additions & 11 deletions

File tree

.changeset/jsr-doc-completeness.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @libredb/libredb
22

3+
## 0.2.1
4+
5+
### Patch Changes
6+
7+
- 6f5e953: Complete the API documentation surface and export the types it references.
8+
9+
Every exported symbol — including interface and class members — now carries JSDoc, and both entrypoints carry an explicit module doc, so generated documentation (JSR, editors) is complete. Types that public signatures reference are now exported instead of being reachable-but-unnamed: `Transaction`, `Entry`, `Key`, `Value`, `Open`, and the lens seam `Store` from the main entry; `Transaction`, `Entry`, `Key`, `Value`, and `Store` from the browser entry. No runtime behavior changes.
10+
311
## 0.2.0
412

513
### Minor Changes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ bunx jsr add @libredb/libredb
102102
**CDN** — every release is served from the npm registry by the usual CDNs. Pin a version:
103103

104104
```ts
105-
import { open, kv } from "https://esm.sh/@libredb/libredb@0.2.0";
105+
import { open, kv } from "https://esm.sh/@libredb/libredb@0.2.1";
106106
```
107107

108108
**Browser** — a dedicated entry that imports nothing from `node:`, so it bundles for the browser

jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@libredb/libredb",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"exports": {
55
".": "./src/index.ts",
66
"./browser": "./src/browser.ts"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@libredb/libredb",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "A small, readable, embeddable, multi-model database. One ordered key-value core, thin model lenses on top.",
55
"keywords": [
66
"database",

src/core.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*/
2323

2424
/** The LibreDB package version. Kept in sync with package.json. */
25-
export const version = "0.2.0";
25+
export const version = "0.2.1";
2626

2727
/**
2828
* The stable failure codes of the kernel. Every error the kernel throws is a

0 commit comments

Comments
 (0)