Skip to content

Commit 8150b8d

Browse files
authored
docs: fix npm package READMEs — remove stale version pins (#85)
All four public package READMEs referenced 0.1.0-alpha.1 in install commands and status sections. The current published versions are: - @intent-framework/core: 0.1.0-alpha.2 - @intent-framework/dom: 0.1.0-alpha.3 - @intent-framework/router: 0.1.0-alpha.2 - @intent-framework/testing: 0.1.0-alpha.2 Rather than pinning specific versions that will go stale again, this change removes version pins entirely from install commands and removes specific version numbers from status sections. This matches npm convention and future-proofs the READMEs for subsequent alpha releases.
1 parent 1a57f0b commit 8150b8d

5 files changed

Lines changed: 20 additions & 12 deletions

File tree

.changeset/quiet-ligers-fetch.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
"@intent-framework/core": patch
3+
"@intent-framework/dom": patch
4+
"@intent-framework/router": patch
5+
"@intent-framework/testing": patch
6+
---
7+
8+
Fix npm package README: remove stale version pins from install commands and status sections.

packages/core/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ Platformless semantic graph and runtime for Intent applications.
55
## Install
66

77
```sh
8-
pnpm add @intent-framework/core@0.1.0-alpha.1
8+
pnpm add @intent-framework/core
99
```
1010

1111
```sh
12-
npm install @intent-framework/core@0.1.0-alpha.1
12+
npm install @intent-framework/core
1313
```
1414

1515
## What it provides
@@ -64,4 +64,4 @@ Core defines the product graph. It has no DOM, React, Node, or framework depende
6464

6565
## Status
6666

67-
Experimental alpha. Version `0.1.0-alpha.1`. APIs may change. Not recommended for production use.
67+
Experimental alpha. APIs may change. Not recommended for production use.

packages/dom/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ DOM materializer for Intent screens and router.
55
## Install
66

77
```sh
8-
pnpm add @intent-framework/core@0.1.0-alpha.1 @intent-framework/dom@0.1.0-alpha.1
8+
pnpm add @intent-framework/core @intent-framework/dom
99
```
1010

1111
```sh
12-
npm install @intent-framework/core@0.1.0-alpha.1 @intent-framework/dom@0.1.0-alpha.1
12+
npm install @intent-framework/core @intent-framework/dom
1313
```
1414

1515
## What it provides
@@ -62,4 +62,4 @@ DOM is a renderer for Intent screens. It depends on `@intent-framework/core` and
6262

6363
## Status
6464

65-
Experimental alpha. Version `0.1.0-alpha.1`. APIs may change. Not recommended for production use.
65+
Experimental alpha. APIs may change. Not recommended for production use.

packages/router/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ Typed route definitions and navigation for Intent.
55
## Install
66

77
```sh
8-
pnpm add @intent-framework/core@0.1.0-alpha.1 @intent-framework/router@0.1.0-alpha.1
8+
pnpm add @intent-framework/core @intent-framework/router
99
```
1010

1111
```sh
12-
npm install @intent-framework/core@0.1.0-alpha.1 @intent-framework/router@0.1.0-alpha.1
12+
npm install @intent-framework/core @intent-framework/router
1313
```
1414

1515
## What it provides
@@ -56,4 +56,4 @@ Router provides typed route definitions and navigation for Intent screens. Use `
5656

5757
## Status
5858

59-
Experimental alpha. Version `0.1.0-alpha.1`. APIs may change. Not recommended for production use.
59+
Experimental alpha. APIs may change. Not recommended for production use.

packages/testing/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ Semantic test harness for Intent screens.
55
## Install
66

77
```sh
8-
pnpm add -D @intent-framework/testing@0.1.0-alpha.1
8+
pnpm add -D @intent-framework/testing
99
```
1010

1111
```sh
12-
npm install --save-dev @intent-framework/testing@0.1.0-alpha.1
12+
npm install --save-dev @intent-framework/testing
1313
```
1414

1515
## What it provides
@@ -72,4 +72,4 @@ Testing provides a runtime harness for Intent screens. It depends on `@intent-fr
7272

7373
## Status
7474

75-
Experimental alpha. Version `0.1.0-alpha.1`. APIs may change. Not recommended for production use.
75+
Experimental alpha. APIs may change. Not recommended for production use.

0 commit comments

Comments
 (0)