claude-nomad 0.17.0 → 0.17.2

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,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.17.2](https://github.com/funkadelic/claude-nomad/compare/v0.17.1...v0.17.2) (2026-05-22)
4
+
5
+
6
+ ### Fixed
7
+
8
+ * **ci:** retry smoke-test install for registry propagation ([#92](https://github.com/funkadelic/claude-nomad/issues/92)) ([1ae7576](https://github.com/funkadelic/claude-nomad/commit/1ae75760f674e93be1fadc2b927ee4dd03f9d346))
9
+
10
+ ## [0.17.1](https://github.com/funkadelic/claude-nomad/compare/v0.17.0...v0.17.1) (2026-05-21)
11
+
12
+
13
+ ### Fixed
14
+
15
+ * **update:** explain y/N in push-merge prompt ([#90](https://github.com/funkadelic/claude-nomad/issues/90)) ([ab53960](https://github.com/funkadelic/claude-nomad/commit/ab5396041210f3770b34121c9875b38580ffc903))
16
+
3
17
  ## [0.17.0](https://github.com/funkadelic/claude-nomad/compare/v0.16.1...v0.17.0) (2026-05-21)
4
18
 
5
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-nomad",
3
- "version": "0.17.0",
3
+ "version": "0.17.2",
4
4
  "type": "module",
5
5
  "description": "Sync Claude Code config (~/.claude/) across machines via a private Git repo, with path remapping and per-host settings overrides.",
6
6
  "keywords": [
@@ -204,7 +204,9 @@ function runFork(opts: CmdUpdateOpts): void {
204
204
  gitOrFatal(['push', 'origin', 'main'], 'git push origin main', REPO_HOME);
205
205
  return;
206
206
  }
207
- const answer = promptFn('push merge to origin/main? [y/N] ').toLowerCase();
207
+ const answer = promptFn(
208
+ 'Push merge to origin/main? (y publishes to your private mirror so other hosts see it; N keeps it local) [y/N] ',
209
+ ).toLowerCase();
208
210
  if (answer === 'y' || answer === 'yes') {
209
211
  gitOrFatal(['push', 'origin', 'main'], 'git push origin main', REPO_HOME);
210
212
  } else {