utem-cli 0.1.0 → 0.1.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 (2) hide show
  1. package/README.md +4 -3
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -64,9 +64,10 @@ CLI auth (`UTEM_API_URL`, `UTEM_TOKEN`, `UTEM_TENANT_ID`) is documented in the
64
64
 
65
65
  ## Versioning
66
66
 
67
- This wrapper's version tracks the `utem` PyPI release it installs
68
- (currently **0.1.0**). Publishing a new wrapper version bumps the pinned CLI
69
- version in lockstep.
67
+ This wrapper is versioned independently of the CLI it installs. The wrapper
68
+ version is `package.json`'s `version`; the CLI version it pins from PyPI is
69
+ `PINNED_CLI_VERSION` in `lib/platform.js` (currently **0.1.0**). Packaging-only
70
+ fixes can ship a new wrapper release without a new CLI release.
70
71
 
71
72
  ## License
72
73
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "utem-cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "npm wrapper for the UTEM CLI (utem) — control plane for the UTEM security platform. Installs the official PyPI package into an isolated environment.",
5
5
  "keywords": [
6
6
  "utem",
@@ -45,6 +45,7 @@
45
45
  "lint": "node scripts/lint.js"
46
46
  },
47
47
  "publishConfig": {
48
- "access": "public"
48
+ "access": "public",
49
+ "provenance": true
49
50
  }
50
51
  }