@ontrails/store 0.2.0 → 0.2.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/CHANGELOG.md +7 -0
- package/README.md +3 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @ontrails/store
|
|
2
2
|
|
|
3
|
+
## 0.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`d785a07`](https://github.com/outfitter-dev/trails/commit/d785a07b458899a7da14999e9b7856b8a7446e66): Align current installation examples with the 0.2.1 scaffold correction and keep Homebrew version checks explicit while preserving the 0.2.0 repair guidance.
|
|
8
|
+
- [`fdef61f`](https://github.com/outfitter-dev/trails/commit/fdef61feeef9b2250d537640db147cb9a9e484bd): Update package installation guidance to reflect the verified npm and Homebrew 0.2.0 release, with the published CLI scaffold repair linked from its README.
|
|
9
|
+
|
|
3
10
|
## 0.2.0
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -269,16 +269,16 @@ const schema = db.tables;
|
|
|
269
269
|
|
|
270
270
|
## Installation
|
|
271
271
|
|
|
272
|
-
These
|
|
272
|
+
These installation examples target Trails `0.2.1` on the normal npm release line.
|
|
273
273
|
|
|
274
274
|
```bash
|
|
275
|
-
bun add --exact @ontrails/store@0.2.
|
|
275
|
+
bun add --exact @ontrails/store@0.2.1 zod
|
|
276
276
|
```
|
|
277
277
|
|
|
278
278
|
Add Drizzle only when you want the external SQLite/ORM adapter:
|
|
279
279
|
|
|
280
280
|
```bash
|
|
281
|
-
bun add --exact @ontrails/drizzle@0.2.
|
|
281
|
+
bun add --exact @ontrails/drizzle@0.2.1
|
|
282
282
|
```
|
|
283
283
|
|
|
284
284
|
## Migration
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ontrails/store",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/outfitter-dev/trails.git",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"clean": "rm -rf dist *.tsbuildinfo"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@ontrails/core": "^0.2.
|
|
34
|
+
"@ontrails/core": "^0.2.1"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"zod": "^4.3.5"
|