···7788## [Unreleased] - yyyy-mm-dd
991010+## [v1.1.1] - 2025-01-05
1111+1212+### Fixed
1313+1414+- Fix a bug where wire was attempting to SSH to the local machine when `buildOnTarget` &
1515+ `allowLocalDeployment` where true.
1616+1017## [v1.1.0] - 2025-12-31
11181219### Added
···5151 let status = run_command_with_env(
5252 &CommandArguments::new(command_string, ctx.modifiers)
5353 // build remotely if asked for AND we arent applying locally
5454- //
5555- // (building remotely but applying locally does not logically
5656- // make any sense)
5757- .on_target(
5454+ .execute_on_remote(
5855 if ctx.node.build_remotely
5956 && let Objective::Apply(apply_objective) = ctx.objective
6060- && apply_objective.should_apply_locally
5757+ && !apply_objective.should_apply_locally
6158 {
6259 Some(&ctx.node.target)
6360 } else {
···5151Alternatively, you can use a tag instead:
52525353```sh
5454-$ npins add github forallsys wire --at v1.1.0
5454+$ npins add github forallsys wire --at v1.1.1
5555```
56565757Then, use this pinned version of wire for both your `hive.nix` and `shell.nix`: