rainbo 0.1.1 → 0.1.3

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/README.md CHANGED
@@ -108,7 +108,9 @@ rainbo lineage graph delete "lineage_graph:migration:1001"
108
108
 
109
109
  ## Release
110
110
 
111
- 1. Update `package.json` and `rust/Cargo.toml` to the same version.
111
+ 1. Update `package.json`, `rust/Cargo.toml`, and the `rainbo` package entry in
112
+ `Cargo.lock` to the same version. Do not publish a metadata-only version
113
+ bump; the bundled Rust binary must report the same version as npm.
112
114
  2. Export the npm publish token from the release machine:
113
115
 
114
116
  ```bash
@@ -128,6 +130,10 @@ whose `package.json` name is not `rainbo`.
128
130
  npm run publish:npm:local
129
131
  ```
130
132
 
133
+ The publish script refuses to continue if `package.json` and `rust/Cargo.toml`
134
+ versions differ. After building the current-platform binary, it also runs the
135
+ bundled binary and verifies `rainbo version` matches `package.json`.
136
+
131
137
  If npm returns `EOTP`, use an automation-capable publish token or pass the
132
138
  current OTP:
133
139
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rainbo",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Rainbo command line tools for data migration workflows",
5
5
  "bin": {
6
6
  "rainbo": "packaging/npm/run.js"