ALPHA: wire is a tool to deploy nixos systems wire.althaea.zone/

chore: update to v1.1.1

+9 -7
+2
CHANGELOG.md
··· 7 7 8 8 ## [Unreleased] - yyyy-mm-dd 9 9 10 + ## [v1.1.1] - 2025-01-05 11 + 10 12 ### Fixed 11 13 12 14 - Fix a bug where wire was attempting to SSH to the local machine when `buildOnTarget` &
+3 -3
Cargo.lock
··· 3157 3157 3158 3158 [[package]] 3159 3159 name = "wire" 3160 - version = "1.1.0" 3160 + version = "1.1.1" 3161 3161 dependencies = [ 3162 3162 "clap", 3163 3163 "clap-markdown", ··· 3183 3183 3184 3184 [[package]] 3185 3185 name = "wire-core" 3186 - version = "1.1.0" 3186 + version = "1.1.1" 3187 3187 dependencies = [ 3188 3188 "aho-corasick", 3189 3189 "anyhow", ··· 3222 3222 3223 3223 [[package]] 3224 3224 name = "wire-key-agent" 3225 - version = "1.1.0" 3225 + version = "1.1.1" 3226 3226 dependencies = [ 3227 3227 "anyhow", 3228 3228 "base64",
+1 -1
Cargo.toml
··· 2 2 members = ["crates/key_agent", "crates/core", "crates/cli"] 3 3 resolver = "2" 4 4 package.edition = "2024" 5 - package.version = "1.1.0" 5 + package.version = "1.1.1" 6 6 7 7 [workspace.metadata.crane] 8 8 name = "wire"
+1 -1
doc/guides/installation.md
··· 51 51 Alternatively, you can use a tag instead: 52 52 53 53 ```sh 54 - $ npins add github forallsys wire --at v1.1.0 54 + $ npins add github forallsys wire --at v1.1.1 55 55 ``` 56 56 57 57 Then, use this pinned version of wire for both your `hive.nix` and `shell.nix`:
+1 -1
doc/package.json
··· 1 1 { 2 2 "name": "wire-docs", 3 - "version": "1.1.0", 3 + "version": "1.1.1", 4 4 "type": "module", 5 5 "devDependencies": { 6 6 "vitepress": "^1.6.4",
+1 -1
doc/snippets/guides/installation/flake.nix
··· 4 4 wire.url = "github:forallsys/wire/stable"; 5 5 6 6 # alternatively, you can use a tag instead: 7 - # wire.url = "github:forallsys/wire/v1.1.0"; 7 + # wire.url = "github:forallsys/wire/v1.1.1"; 8 8 9 9 systems.url = "github:nix-systems/default"; 10 10 };