@ontrails/config 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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # @ontrails/config
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
@@ -255,8 +255,8 @@ test('config trail', async () => {
255
255
 
256
256
  ## Installation
257
257
 
258
- These commands target stable `0.2.0`. Run them after that version is published to npm.
258
+ These installation examples target Trails `0.2.1` on the normal npm release line.
259
259
 
260
260
  ```bash
261
- bun add --exact @ontrails/config@0.2.0 @ontrails/core@0.2.0 zod
261
+ bun add --exact @ontrails/config@0.2.1 @ontrails/core@0.2.1 zod
262
262
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ontrails/config",
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",
@@ -27,11 +27,11 @@
27
27
  "clean": "rm -rf dist *.tsbuildinfo"
28
28
  },
29
29
  "dependencies": {
30
- "@ontrails/source": "^0.2.0",
30
+ "@ontrails/source": "^0.2.1",
31
31
  "yaml": "^2.8.3"
32
32
  },
33
33
  "peerDependencies": {
34
- "@ontrails/core": "^0.2.0",
34
+ "@ontrails/core": "^0.2.1",
35
35
  "zod": "^4.3.5"
36
36
  }
37
37
  }