@ontrails/warden 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.
Files changed (3) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/README.md +2 -2
  3. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @ontrails/warden
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
@@ -193,8 +193,8 @@ See the [API Reference](../../docs/api-reference.md) for the full list.
193
193
 
194
194
  ## Installation
195
195
 
196
- These commands target stable `0.2.0`. Run them after that version is published to npm.
196
+ These installation examples target Trails `0.2.1` on the normal npm release line.
197
197
 
198
198
  ```bash
199
- bun add --exact -d @ontrails/warden@0.2.0
199
+ bun add --exact -d @ontrails/warden@0.2.1
200
200
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ontrails/warden",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/outfitter-dev/trails.git",
@@ -32,20 +32,20 @@
32
32
  "clean": "rm -rf dist *.tsbuildinfo"
33
33
  },
34
34
  "dependencies": {
35
- "@ontrails/adapter-kit": "^0.2.0",
36
- "@ontrails/cli": "^0.2.0",
37
- "@ontrails/config": "^0.2.0",
38
- "@ontrails/permits": "^0.2.0",
39
- "@ontrails/source": "^0.2.0",
40
- "@ontrails/store": "^0.2.0",
35
+ "@ontrails/adapter-kit": "^0.2.1",
36
+ "@ontrails/cli": "^0.2.1",
37
+ "@ontrails/config": "^0.2.1",
38
+ "@ontrails/permits": "^0.2.1",
39
+ "@ontrails/source": "^0.2.1",
40
+ "@ontrails/store": "^0.2.1",
41
41
  "oxc-resolver": "11.19.1",
42
42
  "zod": "^4.3.5"
43
43
  },
44
44
  "devDependencies": {
45
- "@ontrails/testing": "^0.2.0"
45
+ "@ontrails/testing": "^0.2.1"
46
46
  },
47
47
  "peerDependencies": {
48
- "@ontrails/core": "^0.2.0",
49
- "@ontrails/topography": "^0.2.0"
48
+ "@ontrails/core": "^0.2.1",
49
+ "@ontrails/topography": "^0.2.1"
50
50
  }
51
51
  }